-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.32 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
{
"name": "webgriffe/amp-magento",
"description": "Magento REST Api wrapper to use with Amp PHP framework.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Webgriffe SRL",
"email": "support@webgriffe.com"
}
],
"autoload": {
"psr-4": {"Webgriffe\\AmpMagento\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Webgriffe\\AmpMagento\\Tests\\": "tests/"}
},
"require": {
"php": "~7.3.0|~7.4.0|~8.0.0|~8.1.0|~8.2.0|~8.3.0",
"ext-json": "*",
"ext-xml": "*",
"amphp/amp": "^2.1",
"amphp/artax": "^3.0",
"nikic/fast-route": "^1.3",
"webmozart/assert": "^1.4",
"amphp/byte-stream": "^1.6",
"amphp/file": "^0.3",
"amphp/uri": "^0.1",
"phpunit/phpunit": "^9.0",
"cweagans/composer-patches": "^1.7",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpstan/extension-installer": "^1.0"
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true,
"phpstan/extension-installer": true,
"cweagans/composer-patches": true
}
}
}