.scrutinizer.yml 848 B

123456789101112131415161718192021222324252627282930313233
  1. checks:
  2. php:
  3. code_rating: true
  4. remove_extra_empty_lines: true
  5. remove_php_closing_tag: true
  6. remove_trailing_whitespace: true
  7. fix_use_statements:
  8. remove_unused: true
  9. preserve_multiple: false
  10. preserve_blanklines: true
  11. order_alphabetically: true
  12. fix_php_opening_tag: true
  13. fix_linefeed: true
  14. fix_line_ending: true
  15. fix_identation_4spaces: true
  16. fix_doc_comments: true
  17. tools:
  18. external_code_coverage:
  19. timeout: 600
  20. runs: 4
  21. php_code_coverage: false
  22. php_code_sniffer:
  23. config:
  24. standard: PSR2
  25. filter:
  26. paths: ['src']
  27. php_loc:
  28. enabled: true
  29. excluded_dirs: [vendor, test]
  30. php_cpd:
  31. enabled: true
  32. excluded_dirs: [vendor, test]