forked from phpro/grumphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grumphp.yml.dist
45 lines (45 loc) · 983 Bytes
/
grumphp.yml.dist
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
parameters:
bin_dir: "./vendor/bin"
git_dir: "."
process_timeout: 120
tasks:
phpcs:
standard: PSR2
ignore_patterns:
- "spec/*Spec.php"
- "test/*.php"
metadata:
priority: 300
phpspec:
format: progress
verbose: true
metadata:
priority: 200
phpunit:
testsuite: Unit
metadata:
priority: 100
composer:
no_check_lock: true
composer_normalize: ~
yamllint:
ignore_patterns:
- "#test/(.*).yml#"
phplint: ~
phpparser:
visitors:
no_exit_statements: ~
never_use_else: ~
forbidden_function_calls:
blacklist: [var_dump]
metadata:
priority: 100000
paratest:
testsuite: E2E
verbose: true
functional: true
metadata:
priority: 50
testsuites:
git_pre_commit:
tasks: [phpcs, phpspec, phpunit, composer, composer_normalize, yamllint, phplint, phpparser]