-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
66 lines (66 loc) · 1.91 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
{
"name": "shipengine/shipengine",
"type": "library",
"description": "PHP library for the ShipEngine API.",
"keywords": [
"shipengine",
"api",
"shipping"
],
"homepage": "https://github.com/ShipEngine/shipengine-php",
"license": "Apache-2.0",
"authors": [
{
"name": "shipengine/shipengine contributors",
"homepage": "https://github.com/ShipEngine/shipengine-php/contributors"
}
],
"require": {
"php": ">=7.4",
"cbschuld/php-uuid-base58": "^1.0",
"guzzlehttp/guzzle": "^7.0",
"php-http/client-common": "^2.3.0",
"php-http/discovery": "^1.12.0",
"php-http/httplug": "^2.2.0",
"php-http/message": "^1.10.0",
"php-http/message-factory": "^1.0.2",
"psr/http-client": "^1.0.1",
"psr/http-message": "^1.0",
"symfony/event-dispatcher": "^5.2",
"symfony/property-access": "^5.2",
"symfony/serializer": "^5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"guzzlehttp/psr7": "^1.7.0",
"mockery/mockery": "^1.4",
"php-coveralls/php-coveralls": "^2.4",
"php-http/guzzle7-adapter": "^0.1.1",
"phpdocumentor/phpdocumentor": "^3.0.0",
"phpstan/phpstan": "^0.12.53",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"ShipEngine\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"lint": "composer phpcs-fixer && composer phpcs && composer phpstan",
"test": "./vendor/bin/phpunit",
"phpstan": "./vendor/bin/phpstan analyse src --level 5",
"phpcs": "./vendor/bin/phpcs --standard=PSR2 src",
"phpcs-fixer": "./vendor/bin/php-cs-fixer fix -vv --config=.php-cs-fixer.dist.php",
"gen:docs": "./vendor/bin/phpdoc -d src -t docs/shipengine-php-docs"
},
"minimum-stability": "dev",
"prefer-stable": true
}