From b4ad2f6413fa1c10b24cb204bee5831fb46e11aa Mon Sep 17 00:00:00 2001 From: Henrique Moody Date: Sat, 4 Apr 2020 23:42:12 +0200 Subject: [PATCH] Change the PHP support to version 7.2 or aboce Since there will still be secutiry support until 30 Nov 2020 and there was something happening in Travis when generating coverage with newer versions of PHP which I'm not in the mood to debug, I decided to change the support again, this time to version 7.2. Signed-off-by: Henrique Moody --- .travis.yml | 1 + composer.json | 2 +- docs/installation.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 90e56dca7..7711c32df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ sudo: false language: php php: + - 7.2 - 7.3 - 7.4 - nightly diff --git a/composer.json b/composer.json index 41ea04f66..e0b1f1d96 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "sort-packages": true }, "require": { - "php": ">=7.3", + "php": ">=7.2", "respect/stringifier": "^0.2.0", "symfony/polyfill-mbstring": "^1.2" }, diff --git a/docs/installation.md b/docs/installation.md index 6dc607ccf..0c2eee8f7 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -7,4 +7,4 @@ you can install it using [Composer](http://getcomposer.org). composer require respect/validation ``` -Works on PHP 7.3 or above. +Works on PHP 7.2 or above.