-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 987 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
{
"name": "ricktap/qriteria",
"description": "Automatic url parameter mapping to sort, filter, include and select data in an easy to use fluent api within Laravel 5. The default parameter structure is compatible to the http://jsonapi.org specification.",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "json", "api", "search", "filter", "sort", "relations"],
"homepage": "https://github.com/ricktap/Qriteria",
"authors": [
{
"name": "Patrick Selge",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^5.6 || ^7.0",
"illuminate/support": "^5.2",
"illuminate/database": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"autoload": {
"psr-4": {
"RickTap\\Qriteria\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RickTap\\Qriteria\\Tests\\": "tests"
}
}
}