forked from TYPO3-directmail/direct_mail
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.phpcs.xml
More file actions
18 lines (17 loc) · 673 Bytes
/
.phpcs.xml
File metadata and controls
18 lines (17 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<!-- Documentation: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-Ruleset -->
<ruleset name="direct_mail">
<!-- Configuration -->
<config name="encoding" value="utf-8"/>
<config name="testVersion" value="7.4-8.3"/>
<arg name="extensions" value="php/php"/>
<!-- Exclude git directory -->
<exclude-pattern>.git/</exclude-pattern>
<!-- Exclude third party code -->
<exclude-pattern>vendor/</exclude-pattern>
<exclude-pattern>.Build/</exclude-pattern>
<!-- PSR2 ruleset -->
<rule ref="PSR12" />
<!-- PHPCompatibility ruleset -->
<rule ref="PHPCompatibility"/>
</ruleset>