-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
38 lines (37 loc) · 991 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
{
"name": "sellerworks/amazon-mws",
"description": "A PHP client for the Amazon Marketplace Web Services (MWS) API",
"keywords": ["Amazon", "MWS", "SellerCentral"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Steve Nebes",
"email": "[email protected]",
"homepage": "https://seller.works"
}
],
"require": {
"php": ">=5.6.0",
"ext-curl": "*",
"ext-soap": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "6.x",
"psr/log": "1.0.x",
"sabre/xml": "1.x",
"symfony/event-dispatcher": "^3.1"
},
"require-dev": {
"fzaninotto/faker": "^1.6",
"phpunit/phpunit": "^5.5"
},
"suggest": {
"monolog/monolog": "For logging transactions"
},
"autoload": {
"psr-4": {
"SellerWorks\\Amazon\\": "src/",
"SellerWorks\\Amazon\\Tests\\": "tests/"
}
}
}