-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.scrutinizer.yml
53 lines (51 loc) · 1.11 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
filter:
paths:
- ./*
build:
environment:
php:
version: '5.6'
ini:
'memory_limit': '3G'
tests:
override:
-
command: 'bin/phpspec run -f progress -c phpspec-scrutinizer.yml'
coverage:
file: 'coverage.clover'
format: 'php-clover'
tools:
php_analyzer: false
php_mess_detector:
filter:
excluded_paths:
- bin/*
- spec/*
- vendor/*
php_code_sniffer:
config:
standard: PSR2
filter:
excluded_paths:
- bin/*
- spec/*
- vendor/*
sensiolabs_security_checker: true
php_cpd:
filter:
excluded_paths:
- bin/*
- spec/*
- vendor/*
php_loc:
excluded_dirs:
- app/
- bin/
- vendor/
- web/
php_pdepend:
excluded_dirs:
- app/
- bin/
- vendor/
- web/