Skip to content

Commit e9610bc

Browse files
committed
Add phpqa config file/
1 parent f3f82fc commit e9610bc

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

phpqa.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
application:
2+
method:
3+
git:
4+
enabled: true
5+
exception: false
6+
composer:
7+
enabled: true
8+
exception: false
9+
analyzer:
10+
parallel-lint:
11+
enabled: true
12+
exception: true
13+
options:
14+
e: 'php'
15+
exclude: /vendor
16+
arguments:
17+
php-cs-fixer:
18+
enabled: true
19+
exception: false
20+
options:
21+
level: psr2
22+
arguments:
23+
prefixes:
24+
- fix
25+
postfixes:
26+
phpcbf:
27+
enabled: true
28+
exception: false
29+
options:
30+
standard: PSR2
31+
severity: 0
32+
ignore: /vendor
33+
arguments:
34+
- '-n'
35+
phpcs:
36+
enabled: false
37+
exception: false
38+
options:
39+
standard: PSR2
40+
severity: 0
41+
ignore: /vendor
42+
arguments:
43+
- '-n'
44+
phpmd:
45+
enabled: false
46+
exception: false
47+
options:
48+
arguments:
49+
prefixes:
50+
postfixes:
51+
- 'text'
52+
- 'cleancode,codesize,unusedcode,naming,controversial,design'
53+
phploc:
54+
enabled: false
55+
exception: false
56+
phpcpd:
57+
enabled: false
58+
exception: false
59+
phpdcd:
60+
enabled: false
61+
exception: false
62+
phpunit:
63+
enabled: true
64+
exception: true
65+
file:
66+
configuration: phpunit.xml.dist
67+
single-execution: true
68+
options:
69+
arguments:

0 commit comments

Comments
 (0)