-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 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
{
"name": "zmaglica/rick-and-morty-api-wrapper",
"description": "Wrapper for The Rick and Morty API with query builder",
"keywords": [
"zmaglica",
"rick-and-morty-api-wrapper"
],
"homepage": "https://github.com/zmaglica/rick-and-morty-api-wrapper",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Zvonimir Maglica",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Zmaglica\\RickAndMortyApiWrapper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zmaglica\\RickAndMortyApiWrapper\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"lint": "php-cs-fixer fix --diff --dry-run",
"fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true
}
}