-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.39 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": "glue-systems/laravel-sp-api",
"description": "Laravel package for making LWA- / RDT-authorized requests to Amazon Selling Partner API (SP-API)",
"type": "library",
"keywords": [
"laravel",
"sp-api",
"amazon",
"selling-partner",
"client",
"lwa",
"rdt"
],
"license": "MIT",
"authors": [
{
"name": "Glue Systems, LLC Dev Team",
"role": "Package Creators"
}
],
"require": {
"php": ">=7.3",
"glue-systems/sp-api-open-api": "^3.0.0",
"illuminate/support": "^5.1 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
},
"autoload": {
"psr-4": {
"Glue\\SpApi\\Laravel\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mockery/mockery": "1.3.*",
"orchestra/testbench": "~3.0"
},
"extra": {
"laravel": {
"providers": [
"Glue\\SpApi\\Laravel\\SpApiServiceProvider"
],
"aliases": {
"SpApi": "Glue\\SpApi\\Laravel\\Facades\\SpApi",
"SpApiCredentialProvider": "Glue\\SpApi\\Laravel\\Facades\\SpApiCredentialProvider"
}
}
}
}