-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 1.06 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
{
"name": "covergenius/ebay-rest-php-sdk",
"description": "https://developer.ebay.com/docs",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "jeff.nielsen",
"email": "jeff.n@covergenius.com"
}
],
"autoload": {
"psr-4": {
"CoverGenius\\EbayRestPhpSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CoverGenius\\EbayRestPhpSdk\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.3|^8.0",
"guzzlehttp/guzzle": "^6.5|^7.1",
"guzzlehttp/guzzle-services": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.3.3",
"covergenius/php-vcr": "^1.9",
"covergenius/phpunit-testlistener-vcr": "^3.3",
"vlucas/phpdotenv": "^5.3",
"ext-curl": "*",
"ext-simplexml": "*",
"allejo/php-vcr-sanitizer": " ^1.1"
},
"scripts": {
"test": "./vendor/bin/phpunit --colors=always -v --testdox"
},
"minimum-stability": "dev",
"prefer-stable": true
}