forked from basvandorst/StravaPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scrutinizer.yml
31 lines (31 loc) · 852 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
checks:
php:
code_rating: true
duplication: true
build:
tests:
before:
- 'composer install --dev --prefer-source'
override:
-
command: 'vendor/bin/phpunit -c /home/scrutinizer/build/phpunit.xml --coverage-clover=clover-file'
coverage:
file: 'clover-file'
format: 'clover'
filter:
excluded_paths: [vendor/*, tests/*]
before_commands:
- 'composer install --dev --prefer-source'
tools:
external_code_coverage: false
php_mess_detector: true
php_code_sniffer: true
sensiolabs_security_checker: true
php_code_coverage: true
php_pdepend: true
php_loc:
enabled: true
excluded_dirs: [vendor, tests]
php_cpd:
enabled: true
excluded_dirs: [vendor, tests]