-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
41 lines (41 loc) · 1.02 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
{
"name": "appwilio/cdek-sdk",
"keywords": ["CDEK", "sdk", "delivery"],
"homepage": "https://github.com/appwilio/cdek-sdk",
"description": "CDEK API SDK (cdek.ru)",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Roman Sokharev",
"email": "[email protected]",
"role": "Creator"
},
{
"name": "JhaoDa",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/appwilio/cdek-sdk/issues"
},
"require": {
"php": ">=7.1",
"jms/serializer": "^1.8",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.*"
},
"autoload": {
"psr-4": {
"Appwilio\\CdekSDK\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}