Skip to content

Commit

Permalink
Change Travis build matrix for new Symfony releases
Browse files Browse the repository at this point in the history
Closes #11
  • Loading branch information
curry684 committed Dec 3, 2017
1 parent f592055 commit 29a59f6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,23 @@ matrix:
include:
- php: 7.0
env: SYMFONY_VERSION=^3.3
- php: 7.0
env: SYMFONY_VERSION=^3.4
- php: 7.0
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 7.1
env:
- SYMFONY_VERSION=^3.4
- DEPENDENCIES=beta
env: SYMFONY_VERSION=^3.4
- php: 7.2
env: DEPENDENCIES=beta
env: DEPENDENCIES=dev
- php: nightly
env: COMPOSER_FLAGS="--ignore-platform-reqs"
allow_failures:
- php: nightly
- env: DEPENDENCIES=dev

before_install:
- composer self-update
- if [ "$DEPENDENCIES" = "beta" ]; then composer config minimum-stability beta; fi;
- if [ "$DEPENDENCIES" != "" ]; then composer config minimum-stability ${DEPENDENCIES}; fi;
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;

before_script:
Expand Down

0 comments on commit 29a59f6

Please sign in to comment.