-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.15 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
{
"name": "drinksandco/test-dev-ci",
"description": "Test development continuous integration pipeline",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"TestDevCi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestDevCi\\Test\\": "tests/"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"symplify/easy-coding-standard": "^10.1",
"phpstan/phpstan": "^1.5",
"vimeo/psalm": "^4.22",
"phpunit/phpunit": "^9.5",
"phpro/grumphp": "^1.10",
"infection/infection": "^0.26.6",
"rector/rector": "^0.12.20"
},
"scripts": {
"precommit-check": [
"@cs-check",
"@test",
"@inspect",
"@psalm"
],
"check-all": [
"@cs-check",
"@test",
"@inspect",
"@psalm",
"@infection",
"@rector-check"
],
"cs-check": "ecs check src",
"cs-fix": "ecs check src --fix",
"inspect": "phpstan analyse src -l9 --ansi",
"test": "phpunit --colors=always",
"psalm": "psalm",
"infection": "XDEBUG_MODE=coverage infection",
"rector": "rector process src",
"rector-check": "rector process src --dry-run"
}
}