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.

28 line
589B

  1. language: php
  2. sudo: false
  3. before_script:
  4. - cp tests/acceptance.conf.php.default tests/acceptance.conf.php
  5. - cp tests/smoke.conf.php.default tests/smoke.conf.php
  6. - composer self-update
  7. - composer update --no-interaction --prefer-source
  8. - gem install mime-types -v 2.99.1
  9. - gem install mailcatcher
  10. - mailcatcher --smtp-port 4456
  11. script:
  12. - phpunit --verbose
  13. matrix:
  14. include:
  15. - php: 5.3
  16. - php: 5.4
  17. - php: 5.5
  18. - php: 5.6
  19. - php: 7.0
  20. - php: hhvm
  21. allow_failures:
  22. - php: hhvm
  23. fast_finish: true