-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.57 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
{
"name": "shipstream/fedex-rest-sdk",
"description": "A PHP SDK for FedEx's REST API",
"authors": [
{
"name": "Jesse Evers",
"email": "jesse@highsidelabs.co"
}
],
"license": "Apache-2.0",
"require": {
"saloonphp/saloon": "^3.8"
},
"require-dev": {
"highsidelabs/saloon-sdk-generator": "^2.1",
"psy/psysh": "^0.12.3",
"symfony/console": "^7.0",
"phpcompatibility/php-compatibility": "^9.3",
"laravel/pint": "^1.15",
"composer/semver": "^3.4",
"ramsey/uuid": "^4.7",
"phpunit/phpunit": "^11.1"
},
"autoload": {
"psr-4": {
"ShipStream\\FedEx\\": "src/"
},
"files": [
"src/Generator/constants.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"lint": [
"@pint",
"@php-compatibility-check"
],
"pint": "php vendor/bin/pint --dirty",
"php-compatibility-check": "./vendor/bin/phpcs -p ./src ./bin --standard=PHPCompatibility --runtime-set testVersion 8.2-",
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"test": "vendor/bin/phpunit --colors"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}