-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
66 lines (66 loc) · 1.96 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
{
"name": "ans-group/laravel-sieve",
"description": "A library for filtering eloquent queries",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "George Kelly",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"UKFast\\Sieve\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"require": {
"php": "^8.2",
"illuminate/database": "^11.0",
"illuminate/http": "^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0",
"squizlabs/php_codesniffer": "^3.10",
"orchestra/testbench": "^9.0",
"phpmd/phpmd": "^2.1.5",
"larastan/larastan": "^2.9",
"phpstan/phpstan-mockery": "^1.1",
"rector/rector": "^1.2"
},
"extra": {
"laravel": {
"providers": [
"UKFast\\Sieve\\SieveServiceProvider"
]
}
},
"scripts": {
"tests": "./vendor/bin/phpunit",
"phpcs": "./vendor/bin/phpcs --colors --standard=.phpcs/ruleset.xml .",
"phpcs:fix": "./vendor/bin/phpcbf --colors --standard=.phpcs/ruleset.xml .",
"phpmd": "./vendor/bin/phpmd src,tests github .phpmd/ruleset.xml --baseline-file=./phpmd.baseline.xml --color",
"larastan": "./vendor/bin/phpstan --configuration=phpstan.neon analyse --error-format=table --memory-limit=1G src tests",
"rector": "./vendor/bin/rector --dry-run --config=rector.php",
"rector:fix": "./vendor/bin/rector --config=rector.php",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"standards:check": [
"@phpcs",
"@phpmd",
"@larastan",
"@rector"
],
"standards:fix": [
"@phpcs:fix",
"@rector:fix"
]
}
}