forked from drtheuns/apitizer_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 986 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
37
38
39
40
41
42
43
{
"name": "drtheuns/apitizer_php",
"description": "A Laravel querybuilder library for JSON APIs",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Randall Theuns",
"email": "randall@theuns.org"
}
],
"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"
},
"autoload": {
"psr-4": {
"Apitizer\\": "src/Apitizer"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Apitizer\\ServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"coverage": "./vendor/bin/phpunit --coverage-html coverage"
}
}