Skip to content
Snippets Groups Projects
Select Git revision
  • 84a802e216fbcaa202253004eb28e20fb73c5ebe
  • master default protected
2 results

04_insert_data.sql

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    phpcs.xml 629 B
    <?xml version="1.0"?>
    <ruleset
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:noNamespaceSchemaLocation="./vendor/squizlabs/php_codesniffer/phpcs.xsd">
    
        <arg name="basepath" value="."/>
        <arg name="cache" value=".phpcs-cache"/>
        <arg name="colors"/>
        <arg name="extensions" value="php"/>
        <arg name="parallel" value="80"/>
    
        <!-- Show progress -->
        <arg value="p"/>
    
        <!-- Paths to check -->
        <file>admin</file>
        <file>src</file>
        <!--<file>test</file>-->
    
        <!-- Include all rules from Laminas Coding Standard -->
        <rule ref="LaminasCodingStandard"/>
    </ruleset>