.travis.yml 496 B

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