-
Notifications
You must be signed in to change notification settings - Fork 2
/
.scrutinizer.yml
47 lines (44 loc) · 1.09 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
checks:
php: true
filter:
paths: ["src/*"]
tools:
php_code_coverage: true
php_code_sniffer:
enabled: true
config:
standard: PSR2
filter:
paths: ["src/*", "tests/*"]
php_cpd:
enabled: true
excluded_dirs: ["build", "docs", "tests", "vendor"]
php_cs_fixer:
enabled: true
config:
level: all
filter:
paths: ["src/*", "tests/*"]
php_loc:
enabled: true
excluded_dirs: ["build", "docs", "tests", "vendor"]
php_mess_detector:
enabled: true
filter:
paths: ["src/*"]
php_pdepend:
enabled: true
excluded_dirs: ["build", "docs", "tests", "vendor"]
php_analyzer: true
php_analyzer:
filter:
paths: ["src/*", "tests/*"]
sensiolabs_security_checker: true
build:
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=coverage-file'
coverage:
file: 'coverage-file'
format: 'clover'