-
Notifications
You must be signed in to change notification settings - Fork 50
/
composer.json
36 lines (36 loc) · 974 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
31
32
33
34
35
36
{
"name": "marcl/amazonproductapi",
"description":
"PHP library to perform product lookup and searches using the Amazon Product API.",
"version": "3.0.2",
"type": "library",
"keywords": ["amazon", "product", "api"],
"homepage": "https://github.com/MarcL/AmazonProductAPI/",
"license": "MIT",
"authors": [
{
"name": "Marc Littlemore",
"email": "[email protected]",
"homepage": "http://www.marclittlemore.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/MarcL/AmazonProductAPI/",
"issues": "https://github.com/MarcL/AmazonProductAPI/issues"
},
"require-dev": {
"phpunit/phpunit": "6.1.*"
},
"autoload": {
"psr-4": {
"MarcL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarcL\\": "src/",
"tests\\": "tests/"
}
}
}