-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.scrutinizer.yml
More file actions
56 lines (54 loc) · 917 Bytes
/
.scrutinizer.yml
File metadata and controls
56 lines (54 loc) · 917 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
44
45
46
47
48
49
50
51
52
53
54
55
56
---
filter:
paths:
- 'src/*'
excluded_paths:
- 'vendor/*'
- 'tests/*'
- 'build/*'
- 'docs/*'
- 'src/__.php'
dependency_paths:
- 'vendor/*'
coding_style:
php: { }
checks:
php: true
tools:
external_code_coverage:
timeout: 1200
php_mess_detector: true
php_code_sniffer: true
sensiolabs_security_checker: true
php_pdepend: true
php_loc:
enabled: true
command: phploc
excluded_dirs:
- vendor
- tests
- build
- docs
sensiolabs_security_checker: true
php_cpd:
enabled: true
excluded_dirs:
- vendor
- tests
- build
- docs
build:
dependencies:
override:
- sudo composer selfupdate
- sudo composer install-dev
environment:
timezone: UTC
mysql: false
postgresql: false
redis: false
php:
version: 7.3
tests:
override:
- php-scrutinizer-run