forked from JeremyDunn/php-fedex-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 682 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 682 Bytes
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
{
"name": "jeremy-dunn/php-fedex-api-wrapper",
"description": "API Wrapper for Fedex web services",
"keywords": ["shipping","fedex","soap"],
"homepage": "https://github.com/JeremyDunn/php-fedex-api-wrapper",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeremy Dunn",
"email": "jeremy@jsdunn.info",
"homepage": "http://www.jsdunn.info"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"symfony/console": "2.*"
},
"autoload": {
"psr-4": {
"FedEx\\": "src/FedEx/",
"FedEx\\Utility\\": "util/"
}
}
}