forked from jason6688/fedex-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 904 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
{
"version": "0.1.2",
"name": "jason6688/fedex-rest",
"description": "New FedEx Rest API wrapper",
"keywords": [
"shipping",
"fedex",
"rest",
"api"
],
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/jason6688/fedex-rest/issues"
},
"authors": [
{
"name": "Jason",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.0|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^5|^6|^7",
"nesbot/carbon": "^1.21.0|^2.65.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"FedexRest\\": "src/FedexRest/",
"FedexRest\\Tests\\": "tests/FedexRest/Tests"
},
"classmap": [
"src/"
]
},
"require-dev": {
"phpunit/phpunit": "5.*|9.x|10.*",
"vlucas/phpdotenv": "^5.6.0"
},
"config": {
"sort-packages": true
}
}