You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

41 lines
1.1 KiB

  1. before_commands:
  2. - 'composer install --dev --prefer-source'
  3. filter:
  4. excluded_paths: [vendor/*, tests/*]
  5. tools:
  6. php_mess_detector:
  7. enabled: true
  8. config:
  9. controversial_rules:
  10. camel_case_method_name: false
  11. sensiolabs_security_checker: true
  12. # Analyzes the size and structure of a PHP project.
  13. php_pdepend: true
  14. php_loc:
  15. enabled: true
  16. # We recommend to use PHP Code Similarity Analyzer instead as it is
  17. # robust against code modifications and provides better targets for
  18. # refactoring.
  19. php_cpd: false
  20. php_sim: true
  21. # PHP Analyzer is our own analysis tool for PHP code. It’s latest
  22. # version is exclusively available through the hosted version on
  23. # scrutinizer-ci.com.
  24. php_analyzer: true
  25. php_code_sniffer:
  26. enabled: true
  27. config:
  28. standard: "PSR1"
  29. sniffs:
  30. generic:
  31. naming_conventions:
  32. camel_caps_function_name_sniff: false
  33. files:
  34. one_class_per_file_sniff: false