.travis.yml 402 B

12345678910111213141516171819
  1. language: php
  2. php:
  3. - 5.3.3
  4. - 5.3
  5. - 5.4
  6. - 5.5
  7. matrix:
  8. allow_failures:
  9. - php: 5.3.3
  10. before_script:
  11. - echo '' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
  12. - composer install --dev --prefer-source
  13. - git config --global user.name travis-ci
  14. - git config --global user.email travis@example.com
  15. script: ./vendor/bin/phpunit -c tests/complete.phpunit.xml