forked from boda2004/amazon-mws-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (29 loc) · 828 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
{
"name": "katsuo11/amazon-mws-sdk",
"type": "library",
"license": "Apache-2.0",
"description": "Amazon MWS PHP SDK",
"keywords": ["amazon", "mws"],
"minimum-stability": "dev",
"authors": [
{
"name": "Valentin Ferriere",
"homepage": "http://www.v-labs.fr"
}
],
"require": {
"php": ">=5.3.2"
},
"autoload": {
"psr-0": {
"MarketplaceWebService": "feeds/src",
"MarketplaceWebServiceOrders": "orders/src",
"MarketplaceWebServiceProducts": "search/src",
"FBAInventoryServiceMWS": "inventory/src",
"MwsFeedsClient": "feeds",
"MwsOrdersClient": "orders",
"MwsSearchClient": "search",
"MwsInventoryClient": "inventory"
}
}
}