forked from firstred/postnl-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 936 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 936 Bytes
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
{
"name": "firstred/postnl-api-php",
"description": "PostNL REST API PHP Bindings",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Dekker",
"email": "git@michaeldekker.nl"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ext-json": "*",
"sabre/xml": "~1.5.0",
"guzzlehttp/psr7": "^1.4",
"setasign/fpdi": "^2.0",
"setasign/fpdf": "^1.8",
"psr/cache": "^1.0",
"psr/log": "^1.0"
},
"require-dev": {
"php": "^5.6 || ^7.0",
"phpunit/phpunit": "^5.0",
"wappr/logger": "^1.2",
"guzzlehttp/guzzle": "^6.3",
"cache/void-adapter": "^1.0"
},
"suggest": {
"guzzlehttp/guzzle": "Process requests faster + auto retry failed requests"
},
"autoload": {
"psr-4": {
"ThirtyBees\\PostNL\\": "src/"
}
}
}