-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (53 loc) · 1.39 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
{
"name": "graycore/magento2-quote-graphql-aux",
"description": "A Magento 2 package that contains additional GraphQl modifications to the cart to solve common UI problems.",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Damien Retzinger",
"email": "damienwebdev@gmail.com"
}
],
"scripts": {
"test": "phpunit --bootstrap vendor/autoload.php test",
"unit-test": "vendor/bin/phpunit ./Test/Unit",
"test:unit": "vendor/bin/phpunit ./Test/Unit",
"lint": "phpcs . --standard=Magento2 --ignore='vendor/*'"
},
"archive": {
"exclude": [
"/docs",
"/Test",
"README.md"
]
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Graycore\\CustomAttributeMetadataCache\\": ""
},
"files": [
"registration.php"
]
},
"require": {
"magento/module-eav-graph-ql": "^100.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"repositories": {
"0": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}