phpcs.xml.dist 599 B

123456789101112131415161718192021
  1. <?xml version="1.0"?>
  2. <ruleset
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="./vendor/squizlabs/php_codesniffer/phpcs.xsd">
  5. <arg name="basepath" value="."/>
  6. <arg name="cache" value=".phpcs-cache"/>
  7. <arg name="colors"/>
  8. <arg name="extensions" value="php"/>
  9. <arg name="parallel" value="80"/>
  10. <!-- Show progress -->
  11. <arg value="p"/>
  12. <!-- Paths to check -->
  13. <file>src</file>
  14. <file>test</file>
  15. <!-- Include all rules from Laminas Coding Standard -->
  16. <rule ref="LaminasCodingStandard"/>
  17. </ruleset>