Skip to content
Snippets Groups Projects
Select Git revision
  • unicaen_authentification
  • develop default
  • master protected
  • 5.x
  • 4.x
  • release_4.0.0
  • bootstrap4_migration
  • laminas_migration
  • zf-3.x
  • 7.1.0
  • 7.0.0
  • 6.1.0
  • 6.0.1
  • 6.0.0
  • 5.0.1
  • 5.0.0
  • 4.0.2
  • 4.0.1
  • 4.0.0
  • 3.0.0
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
26 results

unicaen-faq.global.php.dist

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    phpcs.xml 1018 B
    <?xml version="1.0"?>
    <ruleset name="Zend Framework coding standard">
        <description>Zend Framework coding standard</description>
    
        <!-- display progress -->
        <arg value="p"/>
        <arg name="colors"/>
        <arg name="extensions" value="php,dist,phtml"/>
    
        <!-- inherit rules from: -->
        <rule ref="PSR2"/>
        <rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
        <rule ref="Generic.Formatting.SpaceAfterNot"/>
        <rule ref="Squiz.WhiteSpace.OperatorSpacing">
            <properties>
                <property name="ignoreNewlines" value="true"/>
            </properties>
        </rule>
        <rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
            <properties>
                <property name="ignoreBlankLines" value="false"/>
            </properties>
        </rule>
        <rule ref="PSR1.Files.SideEffects">
            <exclude-pattern>public/index.php</exclude-pattern>
        </rule>
    
        <!-- Paths to check -->
        <file>config</file>
        <file>module</file>
        <file>public/index.php</file>
        <file>src</file>
    </ruleset>