diff --git a/.travis.yml b/.travis.yml index 4259e2e..5c332f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,7 @@ before_install: - phpenv config-rm xdebug.ini || true install: + - composer require symfony/dependency-injection:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - composer require symfony/http-kernel:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - composer require symfony/proxy-manager-bridge:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist - composer require --dev symfony/framework-bundle:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist diff --git a/CHANGELOG-2.0.md b/CHANGELOG-2.0.md new file mode 100644 index 0000000..2d6d9e6 --- /dev/null +++ b/CHANGELOG-2.0.md @@ -0,0 +1,5 @@ +# CHANGELOG for `2.0.x` + +## v2.0.1 (2019-01-24) + +- [#55](https://github.com/FriendsOfBehat/SymfonyExtension/issues/55) Require symfony/dependency-injection ^3.4.10|^4.1 ([@pamil](https://github.com/pamil)) diff --git a/composer.json b/composer.json index caf09e4..e75ccaa 100644 --- a/composer.json +++ b/composer.json @@ -13,6 +13,7 @@ "require": { "php": "^7.1", "behat/behat": "^3.4", + "symfony/dependency-injection": "^3.4.10|^4.1", "symfony/http-kernel": "^3.4|^4.1", "symfony/proxy-manager-bridge": "^3.4|^4.1" },