-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.19 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
47
48
49
50
51
{
"name": "laratips/filterable",
"description": "Package for handling model filtering by condition rule in Laravel",
"type": "library",
"keywords": [
"filterable",
"query",
"column",
"condition",
"laravel"
],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Arman Poghosyan",
"email": "armpogart@gmail.com",
"role": "Developer and maintainer"
}
],
"require": {
"php": "^8.0",
"illuminate/container": "^8.0",
"illuminate/database": "^8.0",
"illuminate/http": "^8.0",
"illuminate/support": "^8.0",
"illuminate/view": "^8.0",
"php-ds/php-ds": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Laratips\\Filterable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Laratips\\Filterable\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Laratips\\Filterable\\FilterableServiceProvider"
]
}
}
}