<?xml version="1.0"?>
<ruleset name="PHPCS-PSR2">
    <description>The coding standard for php files into Laravel Project</description>
    <rule ref="PSR1"/>
    <rule ref="PSR12"/>

    <file>app</file>
    <file>bootstrap</file>
    <file>config</file>
    <file>database</file>
    <file>routes</file>

    <exclude-pattern>bootstrap/cache/*</exclude-pattern>
    <exclude-pattern>bootstrap/autoload.php</exclude-pattern>
    <exclude-pattern>*/migrations/*</exclude-pattern>
    <exclude-pattern>*/seeds/*</exclude-pattern>
    <exclude-pattern>*.blade.php</exclude-pattern>
    <exclude-pattern>resources/lang/*</exclude-pattern>
    <exclude-pattern>lang/*</exclude-pattern>

    <!-- Show progression -->
    <arg value="p"/>
</ruleset>

