forked from dpdconnect/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 818 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
36
37
38
39
40
41
{
"name": "dpdconnect/php-sdk",
"type": "library",
"description": "DPD Connect PHP SDK",
"license": "OSL-3.0",
"authors": [
{
"name": "DPD",
"email": "[email protected]",
"homepage": "http://www.dpd.nl"
}
],
"support": {
"email": "[email protected]",
"issues": "http://www.dpd.nl"
},
"autoload": {
"psr-4": {
"DpdConnect\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DpdConnect\\Sdk\\Test\\": "tests/"
}
},
"require": {
"php": "^5.5 || ^7.0 || ^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~6.5.0",
"symfony/yaml": "^4.2",
"donatj/mock-webserver": "^2.0",
"overtrue/phplint": "^1.1",
"squizlabs/php_codesniffer": "^3.0@dev"
},
"config": {
"bin-dir": "bin"
}
}