Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b7024ff

Browse files
authored
Fix symfony version in 8.4.x (drupal-composer#285)
2 parents 4df8a59 + 6b59ee5 commit b7024ff

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ install:
2727

2828
script:
2929
- if [[ $RELEASE = dev ]]; then composer --verbose remove --no-update drupal/console; fi;
30-
- if [[ $RELEASE = dev ]]; then composer --verbose require --no-update drupal/core:8.4.x-dev drush/drush:9.0.x-dev; fi;
30+
# Remove symfony/routing once https://www.drupal.org/node/2882456 is fixed
31+
# @see https://www.drupal.org/node/2887000
32+
# @see https://www.drupal.org/node/2874909
33+
- if [[ $RELEASE = dev ]]; then composer --verbose require --no-update symfony/event-dispatcher:~3.2.9 symfony/routing:~3.2.9 drupal/core:8.4.x-dev drush/drush:9.0.x-dev; fi;
3134
- if [[ $RELEASE = dev ]]; then composer --verbose update; fi;
3235
- cd $TRAVIS_BUILD_DIR/web
3336
- ./../vendor/bin/drush site-install --verbose --yes --db-url=sqlite://tmp/site.sqlite

0 commit comments

Comments
 (0)