We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7b4c4b commit 9a8774aCopy full SHA for 9a8774a
.gitattributes
@@ -3,6 +3,7 @@
3
tests/ export-ignore
4
.gitattributes export-ignore
5
.gitignore export-ignore
6
+.phpcs.xml export-ignore
7
composer.* export-ignore
8
phpunit.xml export-ignore
9
README.md export-ignore
.phpcs.xml
@@ -0,0 +1,13 @@
1
+<?xml version="1.0"?>
2
+<ruleset name="PSR12" namespace="GregorJ\Standards">
+ <description>PSR12 programming standard</description>
+ <!-- display progress -->
+ <arg value="p"/>
+ <arg value="n"/>
+ <!-- directories and files to check -->
+ <file>./src</file>
+ <file>./tests</file>
10
+ <!-- Use PSR12 as a standard -->
11
+ <rule ref="PSR12">
12
+ </rule>
13
+</ruleset>
0 commit comments