-
Notifications
You must be signed in to change notification settings - Fork 75
/
composer.json
74 lines (74 loc) · 2.11 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "elgentos/regenerate-catalog-urls",
"description": "Regenerate Catalog URL Rewrites (products, categories, cms pages)",
"type": "magento2-module",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
"php": "~7.4|~8.0|~8.1|~8.2|~8.3",
"magento/framework": "^102.0|^103.0",
"magento/module-catalog-url-rewrite": "^100.3|^100.4",
"magento/module-url-rewrite": "^101.1|^102.0"
},
"minimum-stability": "stable",
"archive": {
"exclude": [
"/.gitignore",
"/grumphp.yml",
"/pdepend.xml",
"/phpstan.neon",
"/phpunit.xml",
"/phpcs.xml",
"/phpmd.xml",
"/package.json",
"/.eslintrc.json",
"/.eslintignore",
"/tests"
]
},
"replace": {
"iazel/module-regen-product-url": "*"
},
"suggest": {
"baldwin/magento2-module-url-data-integrity-checker": "Magento 2 module which can find potential url related problems in your catalog data",
"fisheye/module-url-rewrite-optimiser": "A Magento module that stops URL rewrites with category paths being generated for products when 'Use Categories Path for Product URLs' setting is disabled in config."
},
"require-dev": {
"mediact/testing-suite": "^2.9",
"mediact/coding-standard-magento2": "@stable"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"archive": {
"exclude": [
"/.gitignore",
"/grumphp.yml",
"/pdepend.xml",
"/phpstan.neon",
"/phpunit.xml",
"/phpcs.xml",
"/phpmd.xml",
"/package.json",
"/.eslintrc.json",
"/.eslintignore",
"/tests"
]
},
"config": {
"sort-packages": true
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Elgentos\\RegenerateCatalogUrls\\": "src/"
}
}
}