.travis.yml 586 B

1234567891011121314151617181920212223242526
  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: SYMFONY_PHPUNIT_VERSION=6.1 ./vendor/bin/simple-phpunit
  12. matrix:
  13. include:
  14. - php: 7.0
  15. - php: 7.1
  16. - php: 7.2
  17. - php: 7.3
  18. fast_finish: true
  19. cache:
  20. directories:
  21. - .phpunit