forked from run-as-root/Magento-2-Google-Shopping-Feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 2.06 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
{
"name": "run_as_root/ext-magento2-google-shopping-feed",
"description": "This module provides a google shopping product feed csv export.",
"type": "magento2-module",
"license": "MIT",
"require": {
"magento/framework": "*",
"magento/module-store": "*",
"psr/log": "*",
"magento/module-configurable-product": "*",
"magento/module-import-export": "*",
"magento/module-inventory-sales": "*",
"magento/module-inventory-sales-api": "*",
"magento/module-catalog": "*",
"magento/module-review": "*",
"magento/module-eav": "*",
"magento/module-directory": "*",
"magento/module-grouped-product": "^100.4"
},
"require-dev": {
"phpunit/phpunit": "~9.5.20",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.12",
"squizlabs/php_codesniffer": "^3.7",
"magento/magento-coding-standard": "^31.0",
"sebastian/phpcpd": "^6.0",
"pdepend/pdepend": "^2.14"
},
"repositories": [
{
"type": "composer",
"url": "https://mirror.mage-os.org/",
"only": [
"magento/*"
]
}
],
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"RunAsRoot\\GoogleShoppingFeed\\": "src"
}
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../slevomat/coding-standard,../../magento/magento-coding-standard/,../../phpcompatibility/php-compatibility)"
],
"test": "./vendor/bin/phpunit -c phpunit.xml",
"sniffer": "vendor/bin/phpcs --colors -p ./src --standard=phpcs-ruleset.xml",
"fix-style": "vendor/bin/phpcbf --colors -p ./src --standard=phpcs-ruleset.xml"
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}