-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathcomposer.json
executable file
·69 lines (69 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "mehdi-fathi/eloquent-filter",
"description": "Eloquent Filter adds custom filters automatically to your Eloquent Models in Laravel.\nIt's easy to use and fully dynamic, just with sending the Query Strings to it.",
"keywords": [
"laravel",
"Laravel",
"laravel tools",
"eloquent",
"eloquent filter",
"Eloquent Filter",
"laravel query filter",
"laravel filter",
"query-filter",
"dynamic-filters",
"search",
"query",
"filter",
"laravel filter multiple parameters"
],
"homepage": "https://github.com/mehdi-fathi/eloquent-filter",
"license": "MIT",
"type": "lib",
"authors": [
{
"name": "Mehdi Fathi",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^8.1|^8.2|^8.3",
"illuminate/support": "~8.0|~9.0|~10.0|~11.0",
"illuminate/container": "~8.0|~9.0|~10.0|~11.0",
"illuminate/database": "~8.0|~9.0|~10.0|~11.0",
"illuminate/pagination": "~8.0|~9.0|~10.0|~11.0"
},
"require-dev": {
"phpunit/phpunit": "8.3|8.5|9.3|^9.5|10.5.5",
"orchestra/testbench": "5.*|^6.0|^6.6.0|^7.0.0|^8.0.0|v9.0.0",
"mockery/mockery": "1.4.x-dev|1.4.2|1.5.1|^1.6",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"eloquentFilter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-text"
},
"extra": {
"laravel": {
"providers": [
"eloquentFilter\\ServiceProvider"
],
"aliases": {
"EloquentFilter": "eloquentFilter\\Facade\\EloquentFilter"
}
}
}
}