-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Twig deprecation notice #196
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
language: php | ||
|
||
php: | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
- 7.2 | ||
- 7.3 | ||
|
||
sudo: false | ||
|
||
|
@@ -13,13 +13,11 @@ cache: | |
- $HOME/.composer/cache/files | ||
|
||
env: | ||
- SYMFONY_VERSION=2.7.* | ||
- SYMFONY_VERSION=3.0.* | ||
|
||
matrix: | ||
fast_finish: true | ||
include: | ||
- php: 7.2 | ||
env: SYMFONY_VERSION=2.8.* | ||
- php: 7.2 | ||
env: SYMFONY_VERSION=3.3.* | ||
- php: 7.2 | ||
|
@@ -30,19 +28,25 @@ matrix: | |
env: SYMFONY_VERSION=4.1.*;ASSETIC=skip | ||
- php: 7.2 | ||
env: SYMFONY_VERSION=@dev;ASSETIC=skip | ||
- php: 7.3 | ||
env: SYMFONY_VERSION=3.3.* | ||
- php: 7.3 | ||
env: SYMFONY_VERSION=3.4.* | ||
- php: 7.3 | ||
env: SYMFONY_VERSION=4.0.*;ASSETIC=skip | ||
- php: 7.3 | ||
env: SYMFONY_VERSION=4.1.*;ASSETIC=skip | ||
- php: 7.3 | ||
env: SYMFONY_VERSION=@dev;ASSETIC=skip | ||
- php: 7.0 | ||
env: TWIG_VERSION=2.x | ||
- php: 5.6 | ||
env: COMPOSER_FLAGS="--prefer-lowest" | ||
env: TWIG_VERSION=2.7.* | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the intention is to test the lower bound, but I guess then it should be 2.4 |
||
- php: 7.1 | ||
env: DEPENDENCIES=beta | ||
allow_failures: | ||
- php: 7.2 | ||
env: SYMFONY_VERSION=@dev;ASSETIC=skip | ||
|
||
before_install: | ||
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then phpenv config-add travis.php.ini; fi | ||
- if [[ $TRAVIS_PHP_VERSION != '7.0' && $TRAVIS_PHP_VERSION != '7.1' && $TRAVIS_PHP_VERSION != '7.2' ]]; then phpenv config-rm xdebug.ini; fi | ||
- composer self-update | ||
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi; | ||
- if [ "$ASSETIC" != "skip" ]; then composer require "kriswallsmith/assetic:^1.1" --no-update; fi; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3.0.*
does not make sense, as that's unmaintained. The default should be to not force a Symfony version. And then having some jobs forcing LTS versions