-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.51 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.51 KB
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
{
"name": "kettasoft/filterable",
"description": "A powerful Laravel package for advanced Eloquent query filtering using dedicated filter classes, multiple engines, and clean HTTP request mapping.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"eloquent",
"eloquent-filter",
"filterable",
"filter",
"filtering",
"query-filter",
"api-filter",
"request-filter",
"search"
],
"autoload": {
"psr-4": {
"Kettasoft\\Filterable\\": "src/",
"Kettasoft\\Filterable\\Database\\Migrations\\": "database/migrations/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Kettasoft\\Filterable\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Abdalrhman Emad Saad",
"email": "kettasoft@gmail.com"
}
],
"require": {
"php": "^8.0",
"illuminate/database": "^10.0|^11.0|^12.0",
"illuminate/support": "^10.0|^11.0|^12.0",
"opis/closure": "^4.3"
},
"require-dev": {
"mockery/mockery": "^1.3.2",
"orchestra/testbench": "10.8",
"phpunit/phpunit": "^11.5"
},
"scripts": {
"test": "php vendor/bin/phpunit"
},
"extra": {
"version": "1.0.0",
"laravel": {
"providers": []
}
},
"minimum-stability": "dev",
"prefer-stable": true
}