.travis.yml 566 B

123456789101112131415161718192021222324252627282930
  1. language: php
  2. php:
  3. - 5.3
  4. - 5.4
  5. - 5.5
  6. - 5.6
  7. - hhvm
  8. env:
  9. - SYMFONY_VERSION=2.3.*
  10. - SYMFONY_VERSION=2.4.*
  11. - SYMFONY_VERSION=2.5.*
  12. - SYMFONY_VERSION=2.6.*
  13. - SYMFONY_VERSION=2.7.*@dev
  14. before_script:
  15. - composer require symfony/symfony:${SYMFONY_VERSION} --no-update
  16. - composer install --dev --prefer-source
  17. - sudo pip install -r Resources/doc/requirements.txt
  18. script: make test
  19. notifications:
  20. webhooks: http://sonata-project.org/bundles/admin/master/travis
  21. matrix:
  22. allow_failures:
  23. - php: hhvm
  24. - env: SYMFONY_VERSION=2.7.*@dev