-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.19 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
{
"name": "glue-systems/sp-api-open-api",
"description": "Lightweight PHP library for making LWA-authorized requests to Amazon Selling Partner API (SP-API) via OpenAPI-generated classes",
"type": "library",
"keywords": [
"amazon",
"sp-api",
"selling-partner",
"php",
"client",
"openapi",
"lwa"
],
"license": "MIT",
"authors": [
{
"name": "Glue Systems, LLC Dev Team",
"role": "Package Creators"
},
{
"name": "OpenAPI-Generator contributors",
"homepage": "https://openapi-generator.tech"
}
],
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "7.2.*",
"aws/aws-sdk-php": "^3.110",
"psr/simple-cache": "^1.0"
},
"autoload": {
"psr-4": {
"Glue\\SpApi\\OpenAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"vlucas/phpdotenv": "^3.3",
"mockery/mockery": "1.3.*"
}
}