forked from virgileb/ebay-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.05 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
{
"name": "geekseller/ebay-sdk-php",
"description": "An eBay SDK for PHP. Use the eBay API in your PHP projects.",
"keywords": ["ebay", "api", "sdk"],
"homepage": "https://www.geekseller.com/",
"type": "library",
"license": "(Apache-2.0 and MIT)",
"authors": [
{
"name": "GeekSeller",
"email": "[email protected]",
"homepage": "https://www.geekseller.com"
}
],
"support": {
"issues": "https://github.com/geekseller/ebay-sdk-php/issues"
},
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "~6.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/"]
}
}