-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (34 loc) · 1009 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
{
"name": "janakkapadia/filterable",
"description": "Enhance your Laravel app with dynamic, customizable filtering for Eloquent models. This package provides an easy setup for multi-parameter filtering, custom logic, and relationship support—perfect for building flexible, data-driven features like admin panels and reports.",
"version": "0.0.7",
"type": "package",
"require": {
"php": "^8.1",
"illuminate/support": "~9|~10|^11|^12"
},
"license": "MIT",
"autoload": {
"psr-4": {
"JanakKapadia\\Filterable\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"JanakKapadia\\Filterable\\FilterableServiceProvider"
]
}
},
"authors": [
{
"name": "Janak Kapadia",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"prefer-stable": true
}