NelmioApiDocBundle/.travis.yml
William Durand 768f45641e Merge pull request #610 from dunglas/enhanced_dngls_api
Enhanced DunglasApiBundle support
2015-04-29 22:42:26 +02:00

41 lines
952 B
YAML

language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.4
- 5.5
- 5.6
- nightly
- hhvm
- hhvm-nightly
matrix:
include:
- php: 5.5
env: SYMFONY_VERSION='2.3.*'
- php: 5.5
env: SYMFONY_VERSION='2.4.*'
- php: 5.5
env: SYMFONY_VERSION='2.6.*'
- php: 5.5
env: SYMFONY_VERSION='dev-master'
allow_failures:
- php: 5.5
env: SYMFONY_VERSION='dev-master'
- php: nightly
- php: hhvm-nightly
fast_finish: true
before_script:
- composer self-update
- sh -c 'if [ "$SYMFONY_VERSION" != "dev-master" ] && [ "$SYMFONY_VERSION" != "2.6.*" ]; then sed -i "/dunglas\/api-bundle/d;/symfony\/serializer/d" composer.json; fi;'
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/symfony=$SYMFONY_VERSION; fi;'
- composer install
script: phpunit --coverage-text