-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 963 Bytes
/
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
{
"name": "exactsports/fedex",
"description": "FedEx API Wrapper for Laravel 8+",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ed Grosvenor",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0|^8.1",
"illuminate/support": "^9.0",
"phpseclib/phpseclib": "~3.0",
"guzzlehttp/guzzle": "^7.4"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"friendsofphp/php-cs-fixer": "^3.4"
},
"autoload": {
"psr-4": {
"EXACTSports\\FedEx\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"App\\": "vendor/orchestra/testbench-core/laravel/app"
}
},
"extra": {
"laravel": {
"providers": "EXACTSports\\FedEx\\FedExProvider"
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:unit": "phpunit",
"test": [
"@lint",
"@test:unit"
]
}
}