-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scrutinizer.yml
36 lines (33 loc) · 1.02 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
build:
cache:
directories:
- vendor # Cache for already installed composer package -> speed up composer install
- bin # As vendor directory is cached, bin directory must be also cached (as some dependency will not installed if they are already present and so, related binary will not be linked)
- ~/.composer # Composer home directory (avoid fetching already fetched packages)
environment:
timezone: 'UTC'
php:
version: '8.2'
ini:
'date.timezone': 'UTC'
memory_limit: -1
max_execution_time: -1
nodes:
analysis:
tests:
override:
- php-scrutinizer-run --enable-security-analysis
filter:
paths:
- "src/*"
dependency_paths:
- "vendor/"
excluded_paths:
- "*/tests/*"
- "*/Tests/*"
checks:
php:
code_rating: true
tools:
external_code_coverage:
timeout: 1800