.scrutinizer.yml 724 B

12345678910111213141516171819202122232425262728
  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.0"
  14. - composer install -n
  15. - composer -v update
  16. filter:
  17. excluded_paths:
  18. - tests/*
  19. - main/img/*
  20. - main/lang/*
  21. - app/cache/*
  22. - app/logs/*
  23. - web/*
  24. checks:
  25. php:
  26. code_rating: true
  27. duplication: true