forked from davidtsadler/ebay-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.96 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "zvps/ebay-legacy-php-client",
"description": "An eBay SDK for PHP. Use the eBay API in your PHP projects.",
"keywords": ["ebay", "api", "sdk"],
"homepage": "http://devbay.net/",
"type": "library",
"license": "(Apache-2.0 and MIT)",
"authors": [
{
"name": "David T. Sadler",
"email": "[email protected]",
"homepage": "http://davidtsadler.com",
"role": "Author/Creator"
},
{
"name": "Kevin Andrews",
"email": "[email protected]",
"homepage": "https://zvps.uk",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/zVPS/ebay-legacy-php-client/issues"
},
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "~6.0|~7.0",
"guzzlehttp/psr7": "~1.0",
"guzzlehttp/promises": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"DTS\\eBaySDK\\": "src/"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"DTS\\eBaySDK\\Test\\": "test/"
},
"classmap": ["build/"]
},
"conflict": {
"dts/ebay-sdk-php": "*"
},
"suggest": {
"ebay-sell-php-client": "",
"ebay-sell-analytics-php-client": "",
"ebay-sell-finances-php-client": "",
"ebay-sell-listing-php-client": "",
"ebay-sell-metadata-php-client": "",
"ebay-sell-compliance-php-client": "",
"ebay-sell-fulfillment-php-client": "",
"ebay-sell-logistics-php-client": "",
"ebay-sell-negotiation-php-client": "",
"ebay-sell-account-php-client": "",
"ebay-sell-feed-php-client": "",
"ebay-sell-inventory-php-client": "",
"ebay-sell-marketing-php-client": "",
"ebay-sell-recommendation-php-client": ""
}
}