forked from wsdl2phpgenerator/wsdl2phpgenerator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.scrutinizer.yml
49 lines (46 loc) · 1.23 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
filter:
excluded_paths:
- 'vendor/*'
- 'tests/generated/*'
build:
dependencies:
override:
-
command: 'yes | pecl install soap'
not_if: 'php -r "exit(extension_loaded(''soap'') ? 0 : 1);"'
- 'composer install --dev --no-interaction'
tests:
override:
-
command: 'vendor/bin/phpunit'
coverage:
file: 'build/logs/clover.xml'
format: 'php-clover'
tools:
php_mess_detector:
config:
code_size_rules: { cyclomatic_complexity: false, npath_complexity: false }
filter:
excluded_paths: ['vendor/*']
php_code_sniffer:
config:
standard: PSR2
filter:
excluded_paths: ['vendor/*']
php_code_coverage:
test_command: vendor/bin/phpunit
filter:
excluded_paths: ['vendor/*']
php_cpd:
excluded_dirs:
- tests/generated
filter:
excluded_paths: ['vendor/*']
php_pdepend:
excluded_dirs:
1: vendor
2: tests/generated
php_loc:
excluded_dirs:
- vendor
- tests/generated