forked from michaelbonds/ship-station
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
33 lines (33 loc) · 1006 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
{
"name": "zack6849/ship-station",
"description": "An updated and maintained PHP Wrapper for ShipStation's rest api, forked from michaelb/ship-station, docs @ https://shipstation.docs.apiary.io/",
"type": "library",
"homepage": "https://github.com/zack6849/ship-station/",
"keywords": ["ship", "shipping", "ship-station", "shipstation", "api", "wrapper"],
"license": "MIT",
"authors": [
{
"name": "Zachary Craig",
"email": "zack@zack6849.com",
"homepage": "https://zack6849.com",
"role": "maintainer"
},
{
"name": "Michael Bonds",
"email": "mbonds1219@gmail.com",
"homepage": "http://michaelbonds.com",
"role": "author"
}
],
"autoload": {
"psr-4": {
"MichaelB\\ShipStation\\": "src/"
}
},
"require": {
"guzzlehttp/guzzle": "~7.0"
},
"replace":{
"michaelb/ship-station": "*"
}
}