-
Notifications
You must be signed in to change notification settings - Fork 32
/
phpcs.xml
26 lines (21 loc) · 906 Bytes
/
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
<?xml version="1.0"?>
<ruleset name="PSR2">
<description>The PSR2 coding standard.</description>
<rule ref="PSR2"/>
<!-- Exclude methods that match specific patterns from camel caps rule -->
<rule ref="PSR1.Methods.CamelCapsMethodName">
<exclude-pattern>src/EbicsClient.php</exclude-pattern>
<exclude-pattern>src/Contracts/EbicsClientInterface.php</exclude-pattern>
</rule>
<file>src</file>
<!-- Exclude files that do not contain PHP, Javascript or CSS code. -->
<exclude-pattern>*.xml</exclude-pattern>
<exclude-pattern>composer.lock</exclude-pattern>
<!-- Exclude the `vendor` folder. -->
<exclude-pattern>vendor/</exclude-pattern>
<exclude-pattern>tests/</exclude-pattern>
<!-- PHP CodeSniffer command line options -->
<arg name="extensions" value="php"/>
<arg name="report" value="full"/>
<arg value="p"/>
</ruleset>