From a7a080da39ada816b93a4958cbe3ba8486d9da37 Mon Sep 17 00:00:00 2001 From: julien Date: Wed, 13 Feb 2019 14:24:51 +0100 Subject: [PATCH 1/2] Add compatibility with symfony4 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 22d2b9f..7b6002d 100644 --- a/composer.json +++ b/composer.json @@ -12,11 +12,11 @@ "behat/behat": "^3.5.0", "behat/mink-extension": "^2.3.1", "behat/symfony2-extension": "^2.1.5", - "symfony/security": "^3.4", + "symfony/security": "^3.4|^4.0", "symfony/dom-crawler": "^2.4|^3.0|^4.0", - "symfony/translation": "^3.4", - "symfony/config": "^3.4", - "symfony/dependency-injection": "^3.4", + "symfony/translation": "^3.4|^4.0", + "symfony/config": "^3.4|^4.0", + "symfony/dependency-injection": "^3.4|^4.0", "phpunit/php-code-coverage": "^5", "phpunit/phpunit": "^6" }, From d1678ffbc37d517a87bd8029f71da3be72686100 Mon Sep 17 00:00:00 2001 From: julien Date: Wed, 13 Feb 2019 14:25:24 +0100 Subject: [PATCH 2/2] Add test with lowest dependencies --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b4a70db..e9c89a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,9 +14,9 @@ env: - SELENIUM_VERSION=3.6.0 matrix: - DEPS="" PROFILE=default -# - DEPS="--prefer-lowest" PROFILE=default + - DEPS="--prefer-lowest" PROFILE=default - DEPS="" PROFILE=symfony2 -# - DEPS="--prefer-lowest" PROFILE=symfony2 + - DEPS="--prefer-lowest" PROFILE=symfony2 php: - 7.0