forked from lesstif/php-jira-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
21 lines (16 loc) · 628 Bytes
/
phpcs.xml
File metadata and controls
21 lines (16 loc) · 628 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset name="Coding Standard Config">
<description>standard config file</description>
<arg value="n" />
<arg name="report" value="full" />
<arg name="encoding" value="UTF-8" />
<arg name="extensions" value="php" />
<!-- Run against the PHPCompatibility ruleset -->
<rule ref="PHPCompatibility">
<!-- this is library, anyone using it should fix that, so excluding this -->
<exclude name="PHPCompatibility.PHP.DefaultTimezoneRequired"/>
</rule>
<config name="testVersion" value="7.0-7.1" />
<rule ref="PSR2" />
<file>./src</file>
</ruleset>