propel-bundle/.travis.yml
2016-07-02 23:25:15 +10:00

41 lines
818 B
YAML

sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
env:
- SYMFONY_VERSION="^2.8"
- SYMFONY_VERSION="^2.8" COMPOSER_FLAGS="--prefer-lowest"
- SYMFONY_VERSION="^3.0"
- SYMFONY_VERSION="^3.0" COMPOSER_FLAGS="--prefer-lowest""
- SYMFONY_VERSION="dev-master"
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: nightly
- env: SYMFONY_VERSION="dev-master"
before_install:
- phpenv config-rm xdebug.ini
- composer self-update
- if [ "${SYMFONY_VERSION}" != "" ]; then composer require --no-update "symfony/symfony:${SYMFONY_VERSION}"; fi;
install:
- composer update ${COMPOSER_FLAGS} --prefer-source
script:
- vendor/bin/phpunit --colors