-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrumphp.yml
More file actions
78 lines (78 loc) · 2.15 KB
/
Copy pathgrumphp.yml
File metadata and controls
78 lines (78 loc) · 2.15 KB
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
77
78
grumphp:
environment:
variables:
PHP_CS_FIXER_IGNORE_ENV: "1"
tasks:
phpcsfixer:
allow_risky: true
cache_file: './.php-cs-fixer.cache'
config: './.php-cs-fixer.php'
# rules: [
# '@Symfony',
# '@PSR12',
# strict_comparison,
# ]
using_cache: ~
config_contains_finder: true
verbose: true
diff: false
triggered_by: [ 'php' ]
phpcs:
standard: PSR1
encoding: UTF-8
ignore_patterns: [
./vendor/*
]
phpstan:
configuration: phpstan.neon
memory_limit: "-1"
level: max
force_patterns: [ ]
ignore_patterns: [ ]
triggered_by: [ 'php' ]
use_grumphp_paths: false
phpcpd:
directory: ['src']
exclude: [vendor]
fuzzy: false
min_lines: 5
min_tokens: 70
triggered_by: [ 'php' ]
phpmnd:
directory: 'src'
whitelist_patterns: []
exclude: []
exclude_name: []
# exclude_path: [
# src/Examples/*
# ]
extensions: []
hint: false
ignore_funcs: []
ignore_numbers: []
ignore_strings: ['tests/*']
strings: false
triggered_by: ['php']
psalm:
config: psalm.xml
ignore_patterns: ['']
no_cache: false
report: null
output_format: compact
threads: 3
triggered_by: ['php']
show_info: true
composer:
file: ./composer.json
no_check_all: false
no_check_lock: false
no_check_publish: false
no_local_repository: false
with_dependencies: false
strict: false
phpunit:
config_file: ~
testsuite: ~
group: [ ]
always_execute: false
order: null