We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 831a977 commit 6069b69Copy full SHA for 6069b69
.gitignore
@@ -1,4 +1,4 @@
1
-/.idea/*
2
-/vendor/*
3
-/phpunit.xml
+vendor/
+phpcs.xml
+phpunit.xml
4
composer.lock
phpcs.xml.dist
@@ -0,0 +1,18 @@
+<?xml version="1.0"?>
+<ruleset name="Coding standard">
+ <description>Coding standard</description>
+
5
+ <!-- display progress -->
6
+ <arg value="p"/>
7
+ <!-- use colors in output -->
8
+ <arg name="colors"/>
9
10
+ <!-- inherit rules from: -->
11
+ <rule ref="PSR12">
12
+ <exclude name="PSR12.Properties.ConstantVisibility.NotFound"/>
13
+ </rule>
14
15
+ <!-- Paths to check -->
16
+ <file>src</file>
17
+ <file>tests</file>
18
+</ruleset>
0 commit comments