forked from GenesisGateway/genesis_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
51 lines (39 loc) · 850 Bytes
/
.scrutinizer.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
imports:
- php
before_commands:
- composer install
tools:
php_code_sniffer:
filter:
excluded-paths: [ spec/*, integration/*, features/* ]
config:
standard: PSR2
php_analyzer:
filter:
excluded-paths: [ spec/*, integration/* ]
php_sim:
filter:
excluded-paths: [ spec/*, integration/* ]
php_cpd:
enabled: true
excluded_dirs: [ spec/*, integration/* ]
php_cs_fixer:
enabled: true
config:
level: all
php_loc:
enabled: true
excluded_dirs: [ spec/*, integration/* ]
php_mess_detector:
enabled: true
php_pdepend:
enabled: true
excluded_dirs: [ spec/*, integration/* ]
sensiolabs_security_checker:
enabled: true
build_failure_conditions:
- 'issues.label("coding-style").exists'
filter:
excluded_paths:
- specs/*
- vendor/*