forked from oooiik/laravel-query-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 840 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
{
"name": "oooiik/laravel-query-filter",
"description": "In Laravel, it is convenient to write the query filter related to the model in a separate class",
"keywords": ["laravel", "query", "filter", "query filter"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Obidjon Toshev",
"email": "[email protected]"
},
{
"name": "Odiljon Davronov",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0"
},
"autoload": {
"psr-4": {
"Oooiik\\LaravelQueryFilter\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Oooiik\\LaravelQueryFilter\\Providers\\LaravelQueryFilterServiceProvider"
]
}
}
}