-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
55 lines (40 loc) · 1.71 KB
/
phpcs.xml
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
<?xml version="1.0"?>
<ruleset name="PSR12 and PHPCompatibility">
<!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml -->
<!-- See https://github.com/PHPCompatibility/PHPCompatibility -->
<!-- Set a description for this ruleset. -->
<description>A custom set of code standard rules to check for PHP Projects.</description>
<!--
#############################################################################
COMMAND LINE ARGUMENTS
https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml
#############################################################################
-->
<!-- Pass some flags to PHPCS:
p flag: Show progress of the run.
s flag: Show sniff codes in all reports.
-->
<arg value="ps"/>
<!-- Check up to 8 files simultaneously. -->
<arg name="parallel" value="8"/>
<!-- Check PHP files only. -->
<arg name="extensions" value="php"/>
<!-- Check all files in this directory and the directories below it. -->
<file>.</file>
<!-- Exclude patterns. -->
<exclude-pattern>/.tests/*</exclude-pattern>
<exclude-pattern>/vendor/*</exclude-pattern>
<!--
#############################################################################
USE THE PSR-12 RULESET
#############################################################################
-->
<rule ref="PSR12"/>
<!--
#############################################################################
USE THE PHPCompatibility RULESET
#############################################################################
-->
<rule ref="PHPCompatibility"/>
<config name="testVersion" value="8.0-"/>
</ruleset>