-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
51 lines (51 loc) · 1.15 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
{
"name": "ecomdev/magento2-product-data-preloader",
"description": "Magento 2 Product Data Pre-Loader FTW",
"type": "magento2-module",
"require": {
"magento/framework": "*",
"magento/module-catalog": "~103.0|~104.0",
"magento/module-quote": "~101.0",
"magento/module-customer": "~102.0|~103.0",
"php": "~7.2|~8.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.86",
"squizlabs/php_codesniffer": "^3.6.0",
"phpunit/phpunit": "~9.5",
"ecomdev/magento2-test-essentials": "dev-main"
},
"license": [
"MIT"
],
"repositories": {
"magento": {
"type": "composer",
"url": "https://mirror.mage-os.org"
}
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"EcomDev\\ProductDataPreLoader\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EcomDev\\ProductDataPreLoader\\": ["tests/unit", "tests/util"]
}
},
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan analyze src",
"test": "phpunit tests"
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false
}
}
}