-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.5 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
{
"name": "oscabrera/laravel-query-filters",
"description": "A Laravel package for advanced query filtering and conditions.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Oscabrera/laravel-query-filters",
"authors": [
{
"name": "Oscar Cabrera",
"email": "oscabrera.dev@gmail.com",
"homepage": "https://github.com/Oscabrera"
}
],
"autoload": {
"psr-4": {
"Oscabrera\\QueryFilters\\": "src/",
"Oscabrera\\AnalyzerTool\\CIScripts\\": "ci-scripts/"
}
},
"require": {
"php": "^8.1",
"laravel/framework": "^9.0|^10.0|^11.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Oscabrera\\QueryFilters\\QueryFiltersServiceProvider"
]
}
},
"keywords": [
"laravel",
"query",
"filter",
"database",
"eloquent",
"conditions",
"repository",
"advanced queries"
],
"require-dev": {
"phpstan/phpstan": "^1.11",
"laravel/pint": "^1.16",
"phpmd/phpmd": "^2.15"
},
"scripts": {
"phpstan": "php ci-scripts/PhpStan/run.php",
"pint": "php ci-scripts/Pint/run.php",
"phpmd": "php ci-scripts/PhpMD/run.php"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}