-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.38 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
{
"name": "graycore/magento2-graphql-introspection-cache",
"type": "magento2-module",
"require": {
"php": ">=7.4",
"magento/framework": "^102.0 || ^103.0",
"magento/module-catalog": "^103.0 || ^104.0",
"magento/module-eav": "^102.0",
"magento/module-graph-ql": "^100.0.0",
"magento/module-graph-ql-cache": "^100.0.0"
},
"require-dev": {
"magento/magento-coding-standard": ">=6.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.0"
},
"license": [
"MIT"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Graycore\\GraphQlIntrospectionCache\\": ""
}
},
"scripts": {
"unit-test": "vendor/bin/phpunit ./Test/Unit"
},
"archive": {
"exclude": [
"/docs",
"/Test",
"README.md"
]
},
"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,
"magento/magento-composer-installer": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}