-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
35 lines (35 loc) · 1.02 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
{
"name": "chadicus/marvel-api-client",
"description": "PHP Client for the Marvel API",
"keywords": ["marvel", "api", "client", "rest"],
"authors": [
{
"name": "Chad Gray",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "^7.0",
"dominionenterprises/util" : "^2.0",
"dominionenterprises/filter" : "2.1",
"chadicus/spl-types": "^1.0",
"chadicus/spl-exceptions": "^1.0",
"guzzlehttp/guzzle": "^6.2",
"psr/simple-cache": "^1.0",
"chadicus/psr-cache-helper": "^0.2.1"
},
"suggest": {
"chadicus/psr-cache-mongodb": "Adds response caching with mongodb"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"chadicus/coding-standard": "^1.3",
"chadicus/test-helpers": "^1.0",
"php-coveralls/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": { "Chadicus\\Marvel\\Api\\": ["src", "tests"] }
}
}