-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
phpcs.xml
37 lines (37 loc) · 1.37 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
<?xml version="1.0"?>
<ruleset name="Custom Standard" namespace="GeminiLabs\Standard">
<arg name="basepath" value="." />
<arg name="colors"/>
<arg name="extensions" value="php" />
<arg value="sp"/>
<config name="installed_paths" value="vendor/phpcompatibility/php-compatibility" />
<config name="testVersion" value="7.4-8.3"/>
<description>Coding Standards for PHP CodeSniffer</description>
<exclude-pattern>*/vendors/symfony/*</exclude-pattern>
<file>./autoload.php</file>
<file>./compatibility.php</file>
<file>./config</file>
<file>./deprecated.php</file>
<file>./helpers.php</file>
<file>./migration.php</file>
<file>./plugin</file>
<file>./site-reviews.php</file>
<file>./tests</file>
<file>./uninstall.php</file>
<file>./vendors</file>
<file>./views</file>
<ini name="memory_limit" value="512M"/>
<rule ref="PHPCompatibility"/>
<rule ref="PHPCompatibility.Attributes.NewAttributes.Found">
<severity>0</severity>
</rule>
<rule ref="PHPCompatibility.FunctionUse.NewFunctions.str_containsFound">
<severity>0</severity>
</rule>
<rule ref="PHPCompatibility.FunctionUse.NewFunctions.str_starts_withFound">
<severity>0</severity>
</rule>
<rule ref="PHPCompatibility.FunctionUse.NewFunctions.str_ends_withFound">
<severity>0</severity>
</rule>
</ruleset>