-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.11 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
{
"name": "sapientpro/ebay-traditional-sdk",
"description": "Ebay Traditional API SDK for PHP",
"keywords": [
"ebay",
"api",
"sdk",
"finding",
"shopping",
"merchandising",
"trading",
"platform notifications",
"product services",
"client alerts",
"post order"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "SapientPro",
"email": "[email protected]",
"homepage": "https://sapient.pro/"
}
],
"require": {
"php-64bit": "^8.0",
"ext-xml": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/psr7": "^1.0",
"guzzlehttp/promises": "^1.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"rector/rector": "^0.11"
},
"autoload": {
"psr-4": {
"SapientPro\\EbayTraditionalSDK\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"SapientPro\\EbayTraditionalSDK\\Tests\\": "tests/"
}
}
}