-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
42 lines (42 loc) · 1.17 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": "dhl-plugins/dhl-api-wrapper",
"description": "Dhl Api Wrapper",
"homepage": "https://www.dhlparcel.nl",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rudger Gravestein",
"email": "[email protected]",
"homepage": "https://github.com/Rud5G"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/guzzle-services": "^1.1"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "^5",
"psr/log": "^1.0",
"ramsey/uuid": "^3.7",
"roave/security-advisories": "dev-master",
"zendframework/zend-config-aggregator": "^1.1"
},
"autoload": {
"psr-4": {
"Dhl\\": "src/Dhl"
}
},
"suggest": {
"psr/log": "Required for using the Log middleware",
"ramsey/uuid": "Required for using UUID generator",
"zendframework/zend-config-aggregator": "Required for generating service-description resources"
}
}