forked from martinusso/opencrypt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.scrutinizer.yml
37 lines (37 loc) · 863 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
checks:
php: true
coding_style:
php:
spaces:
around_operators:
concatenation: true
filter:
excluded_paths:
- "vendor/*"
- "tests/*"
paths:
- "src/*"
tools:
php_analyzer: true
php_changetracking: true
php_code_sniffer:
enabled: true
config:
standard: PSR2
php_cpd: true
php_mess_detector: true
php_pdepend: true
php_sim: true
build:
dependencies:
before:
- "sudo composer self-update"
override:
- "composer install --no-interaction --prefer-dist"
tests:
override:
-
command: './vendor/bin/phpunit -c phpunit.xml --coverage-clover=clover.xml'
coverage:
file: 'clover.xml'
format: 'php-clover'