From d13237ba513ce54f0706cdf13a9ee65e1044e3f2 Mon Sep 17 00:00:00 2001 From: Thomas Redstone Date: Tue, 1 Oct 2019 15:06:53 +0100 Subject: [PATCH 1/2] Issue-88 - Remove support for PHP 7.1 which will improve Travis build times and reduce the risk of introducing bugs as changes which make use new language features --- .travis.yml | 1 - composer.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 24c2d6cb4..c998d3496 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 7.1 - 7.2 - 7.3 diff --git a/composer.json b/composer.json index f06c7b4e7..6b0479607 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ } ], "require": { - "php": "^7.1", + "php": "^7.2", "ext-json": "*" }, "require-dev": { From de8f6be134cddc16e37cee3f41a68a98c241e0d4 Mon Sep 17 00:00:00 2001 From: Thomas Redstone Date: Tue, 1 Oct 2019 15:26:12 +0100 Subject: [PATCH 2/2] Remove support for PHP Unit 7.0 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 07e7c91b0..453116765 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "require-dev": { "graham-campbell/analyzer": "^2.1.1", "league/flysystem": "^1.0", - "phpunit/phpunit": "^7.0|^8.0", + "phpunit/phpunit": "^8.0", "scrutinizer/ocular": "^1.5", "symfony/console": "^3.2", "symfony/css-selector": "^3.2",