phpcs.xml 559 B

123456789101112131415161718192021
  1. <?xml version="1.0"?>
  2. <ruleset name="Custom Standard">
  3. <rule ref="PSR2"/>
  4. <file>src</file>
  5. <exclude-pattern>bin/*</exclude-pattern>
  6. <exclude-pattern>tests/*</exclude-pattern>
  7. <exclude-pattern>vendor/*</exclude-pattern>
  8. <exclude-pattern>*.db</exclude-pattern>
  9. <exclude-pattern>*.color</exclude-pattern>
  10. <exclude-pattern>*.ttf</exclude-pattern>
  11. <arg name="encoding" value="utf-8"/>
  12. <arg name="report" value="full"/>
  13. <arg name="report-width" value="120"/>
  14. <arg name="colors"/>
  15. <arg value="p"/>
  16. </ruleset>