-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.scrutinizer.yml
76 lines (72 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
build:
environment:
php:
version: 8.1
pecl_extensions:
- memcached
cache:
directories:
- vendor
- ~/.composer
nodes:
coverage:
tests:
override:
- php-scrutinizer-run
-
command: XDEBUG_MODE=coverage ./vendor/bin/paratest -c phpunit.xml.dist --colors --runner=WrapperRunner
coverage:
file: var/cache/coverage/xml/clover.xml
format: clover
filter:
paths:
- src/*
tools:
php_analyzer:
enabled: true
config:
checkstyle:
enabled: true
naming:
isser_method_name: ^.*$
utility_class_name: ^.*$
doc_comment_fixes:
enabled: false
reflection_fixes:
enabled: false
use_statement_fixes:
enabled: false
simplify_boolean_return:
enabled: true
external_code_coverage: false
php_code_coverage: false
php_changetracking: true
php_cpd: true
php_cs_fixer: false
php_mess_detector: true
php_pdepend: true
sensiolabs_security_checker: true
coding_style:
php:
spaces:
before_parentheses:
closure_definition: true
around_operators:
concatenation: false
checks:
php:
code_rating: true
duplication: true
remove_extra_empty_lines: true
remove_php_closing_tag: true
remove_trailing_whitespace: true
fix_use_statements:
remove_unused: true
preserve_multiple: false
preserve_blanklines: true
order_alphabetically: true
fix_php_opening_tag: true
fix_linefeed: true
fix_line_ending: true
fix_identation_4spaces: true
fix_doc_comments: true