Skip to content

Commit 29a59f6

Browse files
committed
Change Travis build matrix for new Symfony releases
Closes #11
1 parent f592055 commit 29a59f6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,23 @@ matrix:
1212
include:
1313
- php: 7.0
1414
env: SYMFONY_VERSION=^3.3
15+
- php: 7.0
16+
env: SYMFONY_VERSION=^3.4
1517
- php: 7.0
1618
env: COMPOSER_FLAGS="--prefer-lowest"
1719
- php: 7.1
18-
env:
19-
- SYMFONY_VERSION=^3.4
20-
- DEPENDENCIES=beta
20+
env: SYMFONY_VERSION=^3.4
2121
- php: 7.2
22-
env: DEPENDENCIES=beta
22+
env: DEPENDENCIES=dev
2323
- php: nightly
2424
env: COMPOSER_FLAGS="--ignore-platform-reqs"
2525
allow_failures:
2626
- php: nightly
27+
- env: DEPENDENCIES=dev
2728

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

3334
before_script:

0 commit comments

Comments
 (0)