-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 865 Bytes
/
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
{
"name": "mateusd/demo-project",
"type": "magento2-module",
"license": "UNLICENSED",
"autoload": {
"psr-4": {
"Mateusd\\Demo\\": ""
},
"files": [
"registration.php"
]
},
"require": {
"magento/framework": "^103.0",
"magento/module-quote-graph-ql": "^100.0",
"webonyx/graphql-php": "^0.13.8"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"magento/magento-coding-standard": "^6",
"phpunit/phpunit": "^9.5",
"fooman/phpstan-magento2-magic-methods": "^0.7.3"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}