-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpcompat.xml
39 lines (27 loc) · 1.04 KB
/
phpcompat.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
<?xml version="1.0"?>
<ruleset name="PHP Compatibility">
<description>Apply PHP compatibility checks to all PHP files</description>
<!-- Files to check. -->
<file>.</file>
<!-- Exclude paths. -->
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Only scan PHP files. -->
<arg name="extensions" value="php"/>
<!-- The report types to print. -->
<arg name="report" value="summary,source,full"/>
<!-- Show sniff and progress. -->
<arg value="sp"/>
<!-- Strip the file paths down to the relevant bit. -->
<arg name="basepath" value="./"/>
<!-- Check up to 20 files simultaneously. -->
<arg name="parallel" value="20"/>
<!-- Whenever possible, cache the scan results and re-use those for unchanged files on the next scan. -->
<arg name="cache"/>
<!-- Enable colors in report. -->
<arg name="colors"/>
<!-- Include the PHPCompatibilityWP. -->
<rule ref="PHPCompatibilityWP"/>
<!-- WordPress Core currently supports PHP 7.2+. -->
<config name="testVersion" value="7.2-"/>
</ruleset>