-
Notifications
You must be signed in to change notification settings - Fork 3
/
grumphp.yml
46 lines (46 loc) · 943 Bytes
/
grumphp.yml
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
grumphp:
process_timeout: 120
environment:
variables:
PHP_CS_FIXER_IGNORE_ENV: '1'
tasks:
composer: ~
git_commit_message:
enforce_capitalized_subject: false
max_subject_width: 72
type_scope_conventions:
- types:
- build
- ci
- chore
- deps
- docs
- feat
- fix
- perf
- refactor
- revert
- style
- test
phpcsfixer2:
allow_risky: true
config: '.php-cs-fixer.dist.php'
phplint: ~
phpmd:
ruleset: ['phpmd.xml']
exclude:
- 'src/FastCgi/FastCgiRequest.php'
- 'src/Runtime.php'
- 'tests'
phpstan:
level: max
phpunit:
always_execute: true
testsuites:
code_quality:
tasks:
- composer
- phpcsfixer2
- phplint
- phpmd
- phpstan