forked from Okipa/laravel-model-json-storage
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.scrutinizer.yml
39 lines (39 loc) · 1.01 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
filter:
paths: [src/*]
excluded_paths: [test/*]
checks:
php: true
tools:
php_mess_detector: true
php_sim: true
php_cpd: false # Must be disabled to use php_sim instead
php_pdepend: true
php_code_coverage: true
php_code_sniffer:
config:
standard: PSR4
filter:
paths: ['src']
sensiolabs_security_checker: true
php_loc:
enabled: true
excluded_dirs: [vendor, test]
php_cpd:
enabled: true
excluded_dirs: [vendor, test]
build:
nodes:
analysis:
project_setup:
override: true
tests:
override:
- php-scrutinizer-run --enable-security-analysis
-
command: 'vendor/bin/phpunit --coverage-clover=code-coverage'
coverage:
file: 'code-coverage'
format: 'clover'
environment:
php:
version: "7.1"