-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
29 lines (23 loc) · 874 Bytes
/
phpcs.xml
File metadata and controls
29 lines (23 loc) · 874 Bytes
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 Starter Kit">
<description>Coding standard for Laravel Starter Kit.</description>
<!-- Include the PSR1 and PSR2 standards -->
<rule ref="PSR1"/>
<rule ref="PSR2"/>
<!-- Include the Laravel coding standards -->
<rule ref="Laravel">
<exclude name="SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing"/>
</rule>
<!-- Set the minimum PHP version -->
<config name="minimum_supported_wp_version" value="7.4"/>
<!-- Paths to check -->
<file>./app</file>
<file>./config</file>
<file>./database</file>
<file>./routes</file>
<file>./tests</file>
<!-- Exclude directories -->
<exclude-pattern>./bootstrap</exclude-pattern>
<exclude-pattern>./storage</exclude-pattern>
<exclude-pattern>./vendor</exclude-pattern>
</ruleset>