-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
59 lines (59 loc) · 1.85 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
{
"name": "baldwin/magento2-module-url-data-integrity-checker",
"description": "Magento 2 module which can find potential url related problems in your catalog data",
"license": "MIT",
"type": "magento2-module",
"authors": [
{
"name": "Pieter Hoste",
"email": "[email protected]",
"role": "Problem Solver"
}
],
"require": {
"php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"magento/framework": "^100.1 || ^101.0 || ^102.0 || ^103.0",
"magento/module-backend": "^100.1 || ^101.0 || ^102.0",
"magento/module-catalog": "^101.0 || ^102.0 || ^103.0 || ^104.0",
"magento/module-config": "^100.1 || ^101.0",
"magento/module-cron": "^100.1",
"magento/module-store": "^100.1 || ^101.0",
"magento/module-theme": "^100.1 || ^101.0",
"magento/module-ui": "^100.1 || ^101.0",
"symfony/console": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.7",
"ergebnis/composer-normalize": "^2.17",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^11.2"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"psr-4": {
"Baldwin\\UrlDataIntegrityChecker\\": ""
},
"files": [
"registration.php"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"magento/composer-dependency-version-audit-plugin": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
}
}