-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
28 lines (22 loc) · 879 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<ruleset name="Laravel Standards">
<description>The Laravel Coding Standards from https://github.com/emielmolenaar/phpcs-phpcs-laravel</description>
<rule ref="phpcs-laravel"/>
<rule ref="PSR12"/>
<arg name="colors"/>
<ini name="memory_limit" value="512M"/>
<rule ref="Squiz.NamingConventions.ValidVariableName.NotCamelCaps"/>
<rule ref="ImportDetection.Imports.RequireImports.Symbol">
<severity>0</severity>
</rule>
<rule ref="SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses">
<properties>
<property name="caseSensitive" value="false"/>
</properties>
</rule>
<rule ref="VariableAnalysis.CodeAnalysis.VariableAnalysis">
<properties>
<property name="allowUnusedFunctionParameters" value="true"/>
</properties>
</rule>
</ruleset>