-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.scrutinizer.yml
More file actions
43 lines (40 loc) · 869 Bytes
/
.scrutinizer.yml
File metadata and controls
43 lines (40 loc) · 869 Bytes
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
checks:
php:
code_rating: true
duplication: true
tools:
php_cs_fixer:
enabled: true
extensions:
- php
config: { level: psr2 }
filter:
paths:
- src/
php_sim:
enabled: true
min_mass: 30 # Defaults to 16
php_code_sniffer:
enabled: true
config:
standard: PSR2
filter:
paths:
- src/
filter:
paths:
- src/*
excluded_paths:
- tests/
tools:
external_code_coverage:
timeout: 600
runs: 1
build:
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover build/logs/clover.xml'
coverage:
file: 'build/logs/clover.xml'
format: 'clover'