From d85f6c4c061d99d53116b9a91215e4ab19f776d7 Mon Sep 17 00:00:00 2001 From: Danny <9844910+Kynno@users.noreply.github.com> Date: Thu, 5 Sep 2019 15:43:45 +0200 Subject: [PATCH] Removing the tests for PHP 7.0 --- bundles/best_practices.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bundles/best_practices.rst b/bundles/best_practices.rst index 431a267db97..00b1779e548 100644 --- a/bundles/best_practices.rst +++ b/bundles/best_practices.rst @@ -198,11 +198,10 @@ of Symfony and the latest beta release: # Minimum supported dependencies with the latest and oldest PHP version - php: 7.2 env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="max[self]=0" - - php: 7.0 + - php: 7.1 env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="max[self]=0" # Test the latest stable release - - php: 7.0 - php: 7.1 - php: 7.2 env: COVERAGE=true PHPUNIT_FLAGS="-v --coverage-text"