-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
42 lines (42 loc) · 1.07 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
{
"name": "rapidez/magento2-compadre",
"description": "Some Magento code to improve the Rapidez experience",
"keywords": [
"rapidez"
],
"homepage": "https://rapidez.io",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2|^8.1",
"magento/framework": "*",
"magento/module-sales-rule": "*",
"magento/module-catalog": "*",
"magento/module-graph-ql": "*",
"magento/module-quote-graph-ql": "*"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.11.0",
"phpstan/phpstan": "^1.10"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz/"
}
},
"autoload": {
"psr-4": {
"Rapidez\\Compadre\\": "src"
},
"files": [
"src/registration.php"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}