-
Notifications
You must be signed in to change notification settings - Fork 2
/
grumphp.yml
62 lines (62 loc) · 1.42 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
grumphp:
stop_on_failure: true
process_timeout: 900
hide_circumvention_tip: true
testsuites:
complete:
tasks:
- phpcsfixer
- phpcs
- phpstan_src
- phpstan_tests
- phpunit_unit
- phpunit_feature
tests:
tasks:
- phpunit_unit
- phpunit_feature
tasks:
phpcs:
standard: 'phpcs.xml'
tab_width: 4
whitelist_patterns: [ ]
encoding: utf-8
sniffs: [ ]
triggered_by: [ php ]
phpcsfixer:
cache_file: '.php-cs-fixer.cache'
allow_risky: true
config: '.php-cs-fixer.dist.php'
using_cache: true
config_contains_finder: true
verbose: false
diff: true
triggered_by: ['php']
phpstan_src:
autoload_file: ~
configuration: 'phpstan.neon'
memory_limit: '512M'
use_grumphp_paths: false
triggered_by: [ 'php' ]
metadata:
task: phpstan
phpstan_tests:
autoload_file: ~
configuration: 'phpstan.tests.neon'
memory_limit: '512M'
use_grumphp_paths: false
triggered_by: [ 'php' ]
metadata:
task: phpstan
phpunit_unit:
config_file: phpunit.xml
testsuite: UnitTests
always_execute: true
metadata:
task: phpunit
phpunit_feature:
config_file: phpunit.feature.xml
testsuite: FeatureTests
always_execute: true
metadata:
task: phpunit