-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
76 lines (76 loc) · 3.06 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
69
70
71
72
73
74
75
76
{
"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",
"csfix": "vendor/bin/php-cs-fixer --config=.php-cs-fixer.php fix src/ tests/",
"csfix:dryrun": "vendor/bin/php-cs-fixer --config=.php-cs-fixer.php --dry-run fix src/ tests/",
"csfix:src": "vendor/bin/php-cs-fixer --config=.php-cs-fixer.php fix src/",
"csfix:tests": "vendor/bin/php-cs-fixer --config=.php-cs-fixer.php fix tests/"
},
"require": {
"php": "^8.1",
"composer/ca-bundle": "^1.0",
"guzzlehttp/promises": "^1.0 || ^2.0",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"paragonie/hidden-string": "^2.0",
"php-http/discovery": "^1.9.1",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/clock": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "*",
"psr/log": "^1.0.2 || ^2.0 || ^3.0",
"setasign/fpdf": "^1.8",
"setasign/fpdi": "^2.3",
"symfony/deprecation-contracts": "^2.1 || ^3.0"
},
"require-dev": {
"cache/void-adapter": "^1.2",
"friendsofphp/php-cs-fixer": "^3.16",
"guzzlehttp/guzzle": "^7.2",
"monolog/monolog": "^3.0",
"php-http/mock-client": "^1.3",
"phpunit/phpunit": "^10.5",
"symfony/clock": "^6.0",
"symfony/dotenv": "^6.0"
},
"suggest": {
"abbadon1334/phpdoc-to-rst": "Build the documentation",
"giggsey/libphonenumber-for-php": "To automatically format and check phone numbers -- supports ^8.12",
"guzzlehttp/guzzle": "One of the most popular HTTP clients available -- supports ^7.0",
"guzzlehttp/psr7": "One of the most popular HTTP clients available -- supports ^7.0",
"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",
"symfony/http-client": "Another popular HTTP client you can use natively -- supports ^5.4"
},
"autoload": {
"files": ["src/deprecated.php"],
"psr-4": {
"Firstred\\PostNL\\": "src/"
}
},
"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"
}
}