-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
46 lines (46 loc) · 1 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
46
{
"name": "t3ko/dpd-pl-api-php",
"description": "PHP DPD API client",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Tomasz Konarski",
"email": "tomasz@konar.ski"
}
],
"require": {
"phpro/soap-client": "^1.0",
"sabre/xml": "^2.1",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"php-http/message-factory": "^1.0",
"psr/http-message": "^1.0",
"php-http/httplug": "^2.1",
"php-http/discovery": "^1.7",
"php-http/message": "^1.8",
"php-http/client-common": "^2.1"
},
"require-dev": {
"guzzlehttp/psr7": "^1.4",
"php-http/guzzle6-adapter": "^2",
"phpunit/phpunit": "~7.0",
"thomasweinert/phpunit-xpath-assertions": "^2.0"
},
"autoload": {
"psr-4": {
"T3ko\\Dpd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T3ko\\DpdTests\\": "tests/"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit tests"
]
}
}