-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
74 lines (74 loc) · 2 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
70
71
72
73
74
{
"name": "aldemeery/sieve",
"description": "A simple, clean and elegant way to filter Eloquent models.",
"keywords": ["laravel", "eloquent", "filters", "search", "query", "filter", "filtration"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Osama Aldemeery",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"illuminate/database": "^11.0",
"illuminate/console": "^11.0",
"aldemeery/onion": "^1.0"
},
"autoload": {
"psr-4": {
"Aldemeery\\Sieve\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Aldemeery\\Sieve\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Aldemeery\\Sieve\\SieveServiceProvider"
]
}
},
"require-dev": {
"laravel/pint": "^1.16",
"laravel/sail": "^1.29",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^11.1",
"squizlabs/php_codesniffer": "^3.10",
"symfony/var-dumper": "^7.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"infection/infection": "^0.29.7",
"mockery/mockery": "^1.6"
},
"scripts": {
"lint": "pint --test",
"lint:fix": "pint",
"sniff": "phpcs --extensions=php",
"sniff:fix": "phpcbf --extensions=php",
"analyze:phpstan": "phpstan analyse --memory-limit=6G",
"test": "phpunit",
"test:mutate": [
"Composer\\Config::disableProcessTimeout",
"infection --threads=12"
],
"code:check": [
"@lint",
"@sniff",
"@analyze:phpstan",
"@test",
"@test:mutate"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}