forked from firstred/postnl-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "firstred/postnl-api-php",
"description": "PostNL REST API PHP Bindings",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Dekker",
"email": "[email protected]"
}
],
"keywords": ["postnl", "shipping", "shipments"],
"scripts": {
"docs:build": "sphinx-build -b html docs docsbuild",
"test": "vendor/bin/phpunit -c phpunit.xml --testdox tests"
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"ext-json": "*",
"composer/ca-bundle": "^1.2",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"php-http/promise": "^1.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"setasign/fpdf": "^1.8",
"setasign/fpdi": "^2.0"
},
"require-dev": {
"cache/void-adapter": "^1.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"guzzlehttp/promises": "^1.4",
"php-http/mock-client": "^1.3",
"phpunit/phpunit": ">=5.7",
"sabre/xml": "^1.5",
"symfony/dotenv": "^3.0 || ^4.0 || ^5.0",
"wappr/logger": "^1.2",
"yoast/phpunit-polyfills": "^0.2"
},
"suggest": {
"sabre/xml": "To use the SOAP API -- supports ^1.5",
"guzzlehttp/guzzle": "One of the most popular HTTP clients available -- supports ^6.5.3 || ^7.0",
"symfony/http-client": "Another popular HTTP client you can use natively -- supports ^5.2",
"giggsey/libphonenumber-for-php": "To automatically format and check phone numbers -- supports ^8.12",
"php-http/discovery": "Required if you want to use an alternative PSR-18, async or HTTPlug Client",
"php-http/httplug": "Required if you want to use an alternative PSR-18, async or HTTPlug Client",
"php-http/message-factory": "Required if you want to use an alternative PSR-18, async or HTTPlug Client",
"psr/http-factory": "Required if you want to use an alternative PSR-18, async or HTTPlug Client",
"abbadon1334/phpdoc-to-rst": "Build the documentation"
},
"autoload": {
"psr-4": {
"Firstred\\PostNL\\": "src/"
},
"files": ["src/deprecated.php"]
},
"autoload-dev": {
"psr-4": {
"Firstred\\PostNL\\Tests\\": "tests/"
}
},
"support": {
"email": "[email protected]",
"docs": "https://postnl-php.readthedocs.io/",
"source": "https://github.com/firstred/postnl-api-php",
"issues": "https://github.com/firstred/postnl-api-php/issues"
}
}