forked from nfephp-org/sped-nfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scrutinizer.yml
54 lines (53 loc) · 1.19 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
checks:
php: true
coding_style:
php:
spaces:
around_operators:
concatenation: true
filter:
excluded_paths:
- "vendor/*"
- "examples/*"
- "docs/*"
- "console/*"
- "schemes/*"
- "tests/*"
- "storage/*"
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.dist --coverage-clover=clover.xml'
coverage:
file: 'clover.xml'
format: 'php-clover'
environment:
php:
version: 7.0.8
mysql: false
postgresql: false
redis: false
elasticsearch: false
rabbitmq: false
mongodb: false
neo4j: false
memcached: false