forked from netresearch/dhl-sdk-api-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 845 Bytes
/
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
{
"name": "dhl/sdk-api-express",
"description": "API communication to the DHL Express web services.",
"type": "library",
"license": "MIT",
"authors": [
{
"email": "plugins@netresearch.de",
"name": "Netresearch DTT GmbH",
"role": "Manufacturer",
"homepage": "https://www.netresearch.de/"
}
],
"require": {
"php": "^7.1",
"ext-dom": "*",
"ext-soap": "*",
"psr/log": "^1.1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0.0",
"phpstan/phpstan": "^0.12.2",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"Dhl\\Express\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dhl\\Express\\Test\\": "test/"
}
}
}