-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.scrutinizer.yml
61 lines (61 loc) · 1.37 KB
/
.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
52
53
54
55
56
57
58
59
60
61
#before_commands:
# - "composer install --prefer-dist"
tools:
php_analyzer:
enabled: true
filter:
excluded_paths:
- vendor
- web
- app/cache
config:
checkstyle:
enabled: true
verify_php_doc_comments:
enabled: true
loops_must_use_braces:
enabled: true
php_code_coverage:
enabled: false
test_command: phpunit -c app/phpunit.xml.dist
filter:
excluded_paths:
- vendor
- web
- app
- bin
php_code_sniffer:
enabled: true
config:
standard: PSR2
filter:
excluded_paths:
- vendor
- web
- app
- bin
php_cpd:
enabled: true
excluded_dirs:
- vendor
- web
- app
- bin
php_loc:
enabled: true
excluded_dirs:
- vendor
- web
- app
- bin
php_mess_detector:
enabled: true
filter:
excluded_paths:
- vendor
- web
- app
- bin
php_pdepend:
enabled: true
sensiolabs_security_checker: false