23 lines
535 B
XML
23 lines
535 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="PHP Custom Standard" namespace="">
|
|
|
|
<description>
|
|
A custom coding standard
|
|
</description>
|
|
|
|
<file>./src</file>
|
|
|
|
<exclude-pattern>*/tests/*</exclude-pattern>
|
|
<exclude-pattern>*/vendor/*</exclude-pattern>
|
|
<exclude-pattern>*/.idea/*</exclude-pattern>
|
|
<exclude-pattern>*/Example*</exclude-pattern>
|
|
|
|
<arg name="report" value="summary"/>
|
|
<arg name="colors"/>
|
|
<arg value="sp"/>
|
|
|
|
<ini name="memory_limit" value="64M"/>
|
|
|
|
<rule ref="PSR2"/>
|
|
|
|
</ruleset>
|