.scrutinizer.yml 692 B

1234567891011121314151617181920212223242526272829
  1. # .scrutinizer.yml - see https://scrutinizer-ci.com/docs/guides/php/continuous-integration-deployment for doc
  2. build:
  3. environment:
  4. php:
  5. version: 5.6.0
  6. ini:
  7. 'date.timezone': 'US/Pacific'
  8. 'phar.readonly': false
  9. hosts:
  10. my.chamilodev.net: '127.0.0.1'
  11. dependencies:
  12. before:
  13. - composer -v update
  14. filter:
  15. excluded_paths:
  16. - tests/*
  17. - main/img/*
  18. - main/lang/*
  19. - app/cache/*
  20. - app/logs/*
  21. - web/*
  22. - vendor/*
  23. - main/admin/db.php
  24. - app/Migrations/*
  25. checks:
  26. php:
  27. code_rating: true
  28. duplication: true