-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.laminas-ci.json
49 lines (49 loc) · 1.43 KB
/
.laminas-ci.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
{
"additional_checks": [
{
"name": "phpstan-lowest",
"job": {
"php": "@lowest",
"command": "./vendor/bin/phpstan analyse --no-progress"
}
},
{
"name": "phpstan-latest",
"job": {
"php": "@latest",
"command": "./vendor/bin/phpstan analyse --no-progress"
}
},
{
"name": "psalm",
"job": {
"php": "8.3",
"command": "./vendor/bin/psalm --shepherd --stats --output-format=github --no-cache -c psalm5.xml"
}
},
{
"name": "example-default",
"job": {
"php": "@latest",
"command": "diff <(./vendor/bin/phpstan analyse -c ./example/phpstan.default.neon --no-progress --error-format=junit | xmllint --format -) ./test/example.default.output"
}
},
{
"name": "example-recommend",
"job": {
"php": "@latest",
"command": "diff <(./vendor/bin/phpstan analyse -c ./example/phpstan.recommend.neon --no-progress --error-format=junit | xmllint --format -) ./test/example.recommend.output"
}
},
{
"name": "example-enableContextTypeRule",
"job": {
"php": "@latest",
"command": "diff <(./vendor/bin/phpstan analyse -c ./example/phpstan.enableContextTypeRule.neon --no-progress --error-format=junit | xmllint --format -) ./test/example.enableContextTypeRule.output"
}
}
],
"ignore_php_platform_requirements": {
"8.4": true
}
}