forked from sonnenglas/amazon-mws-laravel
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
30 lines (30 loc) · 863 Bytes
/
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
{
"name": "georanma/lumen-amazon-mws",
"description": "Use Amazon's MWS web services with Lumen 5.x. Based on sonnenglas/amazon-mws-laravel package and modified to make it compatible with latest lumen releases (+ bugfixes).",
"license": "Apache-2.0",
"keywords": ["API", "Amazon", "PHP", "MWS", "Laravel","Lumen"],
"authors": [
{
"name": "George Birnbaum",
"email": "georanma@gmail.com"
},
{
"name": "Haris Masood",
"email": "haris@nanowebgroup.com"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"illuminate/support": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"autoload": {
"psr-4": {
"Georanma\\AmazonMws\\": "src"
}
},
"minimum-stability": "stable"
}