-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
45 lines (45 loc) · 1.01 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
{
"name": "mallgroup/mpapi-client-php",
"description": "PHP Client for Mall marketplace API",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Internet Mall, a.s."
}
],
"support": {
"docs": "https://marketplaceapiv2.docs.apiary.io/",
"wiki": "https://knowledgebase.mallgroup.com/"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"MpApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MpApiClient\\Tests\\": "tests/"
}
},
"require": {
"php-64bit": "^7.4 || ^8.0",
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.0.0",
"codeception/module-phpbrowser": "^1.0.0",
"phpmd/phpmd": "^2.10",
"phpstan/phpstan": "^0.12.88",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.7",
"vlucas/phpdotenv": "^5.3"
}
}