-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.scrutinizer.yml
40 lines (36 loc) · 848 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
filter:
excluded_paths: [vendor/*]
checks:
php:
code_rating: true
duplication: true
build:
environment:
php:
version: 7.2.13
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=coverage'
coverage:
file: 'coverage'
format: 'php-clover'
tools:
php_mess_detector: true
php_cpd:
enabled: true
excluded_dirs: [vendor]
php_pdepend:
enabled: true
excluded_dirs: [vendor]
php_code_sniffer:
enabled: true
config:
standard: PSR2
php_code_coverage: true
php_loc:
enabled: true
excluded_dirs: [vendor]
sensiolabs_security_checker: true
before_commands:
- "composer install --prefer-source"