From ee22f26d0526f82da521c9fb868763d3fe74facc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Faugeron?= Date: Tue, 3 Dec 2019 12:11:09 +0000 Subject: [PATCH 1/4] Added support to Symfony 5 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index f5e257b..275e83c 100644 --- a/composer.json +++ b/composer.json @@ -12,12 +12,12 @@ ], "require": { "php": ">=5.3.3", - "symfony/yaml": "^2.3 || ^3.0 || ^4.0" + "symfony/yaml": "^2.3 || ^3.0 || ^4.0 || ^5.0" }, "require-dev": { "composer/composer": "^1.0@dev", - "symfony/filesystem": "^2.3 || ^3 || ^4", - "symfony/phpunit-bridge": "^4.0" + "symfony/filesystem": "^2.3 || ^3 || ^4 || ^5", + "symfony/phpunit-bridge": "^4.0 || ^5.0" }, "autoload": { "psr-4": { "Incenteev\\ParameterHandler\\": "" } From b5046522bd7715b78d8eca7d6ed40477fb546522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Faugeron?= Date: Tue, 3 Dec 2019 14:44:00 +0000 Subject: [PATCH 2/4] Removed PHPUnit 8 BC break --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index a241bf0..1d9d774 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ env: global: - SYMFONY_PHPUNIT_DIR=$HOME/.phpunit-bridge - SYMFONY_PHPUNIT_REMOVE='' # don't remove prophecy + - SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 php: [7.2, 7.1, 7.0, 5.6, 5.5, 5.4] From 82a43b727c08d00f51fa1c0e153feacc8c3ab820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Faugeron?= Date: Tue, 3 Dec 2019 14:44:27 +0000 Subject: [PATCH 3/4] Fixed travis/phpenv missing PHP 5.4 and 5.5 test environments --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1d9d774..8edaa48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,10 @@ matrix: env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' - php: 5.3 dist: precise + - php: 5.4 + dist: trusty + - php: 5.5 + dist: trusty - php: 7.2 env: STABILITY=dev From 3dab5b06dc1639f512d059f00fd797beb9a5ff1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Faugeron?= Date: Wed, 4 Dec 2019 09:01:31 +0000 Subject: [PATCH 4/4] Removed duplicate PHP 5.5 and 5.4 entries from travis.yml As suggested by @derrabus, PHP 5.5 and 5.4 are also added through the matrix, so they're unnecessary in the php version list. Co-Authored-By: Alexander M. Turek --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8edaa48..939b7ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ env: - SYMFONY_PHPUNIT_REMOVE='' # don't remove prophecy - SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 -php: [7.2, 7.1, 7.0, 5.6, 5.5, 5.4] +php: [7.2, 7.1, 7.0, 5.6] matrix: include: