-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (38 loc) · 886 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
{
"name": "aejnsn/lapis",
"description": "An API toolkit for Laravel 5.5+",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"api",
"toolkit",
"filtering"
],
"authors": [
{
"name": "Aaron Johnson",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~5.9.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~5.9.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"graham-campbell/testbench": "~4.0",
"php-coveralls/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": {
"Aejnsn\\Lapis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aejnsn\\Lapis\\Tests\\": "tests/"
}
}
}