.scrutinizer.yml 602 B

123456789101112131415161718192021222324
  1. filter:
  2. excluded_paths: [ 'vendor/*', 'tests/*', 'samples/*' ]
  3. before_commands:
  4. - "composer install --prefer-source --dev"
  5. tools:
  6. php_code_sniffer:
  7. enabled: true
  8. config:
  9. standard: PSR2
  10. php_mess_detector:
  11. enabled: true
  12. config:
  13. ruleset: phpmd.xml.dist
  14. external_code_coverage:
  15. enabled: true
  16. timeout: 900
  17. php_cpd: true
  18. # php_sim: # Temporarily disabled to allow focus on things other than duplicates
  19. # min_mass: 40
  20. php_pdepend: true
  21. php_analyzer: true
  22. sensiolabs_security_checker: true