-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.11 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": "drtheuns/apitizer_php",
"description": "A Laravel schema library for JSON APIs",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Randall Theuns",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"illuminate/http": "^6.0",
"illuminate/database": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "^4.0",
"mockery/mockery": "^1.3",
"nunomaduro/larastan": "^0.5.2"
},
"autoload": {
"psr-4": {
"Apitizer\\": "src/Apitizer"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Apitizer\\ServiceProvider"
]
}
},
"scripts": {
"fix": "php-cs-fixer fix ./src && php-cs-fixer fix ./tests",
"test": "./vendor/bin/phpunit",
"coverage": "./vendor/bin/phpunit --coverage-html coverage",
"analyse": "./vendor/bin/phpstan analyse"
}
}