forked from leanphp/phpspec-code-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
20 lines (16 loc) · 682 Bytes
/
phpcs.xml
File metadata and controls
20 lines (16 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<!-- leanphp/common-dev phpcs.xml example config -->
<ruleset name="LeanPHP Coding Standard">
<description>LeanPHP Coding Standard</description>
<!-- directories and files to scan -->
<file>src</file>
<!-- directories and files to exclude -->
<exclude-pattern>test</exclude-pattern>
<exclude-pattern>tests</exclude-pattern>
<exclude-pattern>*Spec.php</exclude-pattern>
<!-- uncomment for a summary instead of detailed report -->
<!--<arg name="report" value="summary"/>-->
<arg value="p"/>>
<!-- Use Symfony2 Coding Standard -->
<rule ref="vendor/escapestudios/symfony2-coding-standard/Symfony"/>
</ruleset>