From 18ed5ed526d7f980fb52e936c0d1ddb3062172fb Mon Sep 17 00:00:00 2001 From: Molkobain Date: Thu, 23 Feb 2023 14:53:05 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B06019=20-=20Increase=20PHP=20min=20versio?= =?UTF-8?q?n=20to=207.1.3=20to=20enable=20dependencies=20update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 4 ++-- setup/setuputils.class.inc.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index f2c3d87a1..ad2ecbabd 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "type": "project", "license": "AGPL-3.0-only", "require": { - "php": ">=7.0.8", + "php": ">=7.1.3", "ext-ctype": "*", "ext-dom": "*", "ext-gd": "*", @@ -44,7 +44,7 @@ }, "config": { "platform": { - "php": "7.0.8" + "php": "7.1.3" }, "vendor-dir": "lib", "preferred-install": { diff --git a/setup/setuputils.class.inc.php b/setup/setuputils.class.inc.php index 1ba6b9c35..e45dd62c9 100644 --- a/setup/setuputils.class.inc.php +++ b/setup/setuputils.class.inc.php @@ -50,7 +50,7 @@ class CheckResult class SetupUtils { // -- Minimum versions (requirements : forbids installation if not met) - const PHP_MIN_VERSION = '7.0.8'; // 7.0 for embedded libs, see N°3129 + const PHP_MIN_VERSION = '7.1.3'; // 7.1 for embedded libs, see N°6019 const MYSQL_MIN_VERSION = '5.6.0'; // 5.6 to have fulltext on InnoDB for Tags fields (N°931) const MYSQL_NOT_VALIDATED_VERSION = ''; // MySQL 8 is now OK (N°2010 in 2.7.0) but has no query cache so mind the perf on large volumes !