.scrutinizer.yml 709 B

123456789101112131415161718192021222324252627
  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 global require "fxp/composer-asset-plugin:1.0.3"
  14. - composer -v update
  15. filter:
  16. excluded_paths:
  17. - tests/*
  18. - main/img/*
  19. - main/lang/*
  20. - app/cache/*
  21. - app/logs/*
  22. - web/*
  23. - vendor/*
  24. checks:
  25. php:
  26. code_rating: true
  27. duplication: true