-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
57 lines (57 loc) · 1.4 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
{
"name": "kblais/query-filter",
"description": "Easily create filters for your Eloquent models.",
"license": "MIT",
"authors": [
{
"name": "Killian Blais",
"email": "contact@killianblais.fr"
}
],
"require": {
"php": "^8.0",
"illuminate/database": "^9.33|^10.0|^11.0",
"illuminate/http": "^9.33|^10.0|^11.0",
"illuminate/support": "^9.33|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.1"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0",
"friendsofphp/php-cs-fixer": "^3.0",
"larastan/larastan": "^2.9"
},
"scripts": {
"tests:cs": [
"@php ./vendor/bin/php-cs-fixer fix"
],
"tests:stan": [
"@php ./vendor/bin/phpstan analyze"
],
"tests:unit": [
"@php ./vendor/bin/phpunit --colors"
],
"tests": [
"@tests:cs",
"@tests:stan",
"@tests:unit"
]
},
"autoload": {
"psr-4": {
"Kblais\\QueryFilter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kblais\\QueryFilter\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Kblais\\QueryFilter\\QueryFilterServiceProvider"
]
}
},
"prefer-stable": true
}