We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acafbdb commit f747789Copy full SHA for f747789
.travis.yml
@@ -32,6 +32,8 @@ matrix:
32
env: SYMFONY_VERSION=2.8.*
33
- php: 7.0
34
env: SYMFONY_VERSION=3.0.*
35
+ - php: 7.1
36
+ env: DEPENDENCIES=beta
37
38
allow_failures:
39
- php: nightly
@@ -42,6 +44,7 @@ env:
42
44
43
45
before_install:
46
- phpenv config-rm xdebug.ini || echo "xdebug not available";
47
+ - if [ "$DEPENDENCIES" = "beta" ]; then perl -pi -e 's/^}$/,"minimum-stability":"beta"}/' composer.json; fi;
48
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/framework-bundle "$SYMFONY_VERSION"; fi
49
- if [ "$COMPOSER_FLAGS" != "" ]; then composer update --prefer-dist --no-interaction --no-scripts $COMPOSER_FLAGS; fi;
50
0 commit comments