From 7d3cbcd333c15220e27bfd931b6180bd4cee6f80 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Fri, 4 Nov 2022 12:02:11 +0100 Subject: [PATCH] PHP 7.4 required #623 --- README.md | 2 +- snappymail/v/0.0.0/setup.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c9d05f86..24c15f92a 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ This fork of RainLoop has the following changes: * Auth failed attempts written to syslog * Added Fail2ban instructions * ES2018 -* PHP 7.3+ required +* PHP 7.4+ required * PHP mbstring extension required * PHP replaced pclZip with PharData and ZipArchive * Dark mode diff --git a/snappymail/v/0.0.0/setup.php b/snappymail/v/0.0.0/setup.php index 6fe37158e..89e52397d 100644 --- a/snappymail/v/0.0.0/setup.php +++ b/snappymail/v/0.0.0/setup.php @@ -2,10 +2,10 @@ if (defined('APP_VERSION')) { - if (PHP_VERSION_ID < 70300) + if (PHP_VERSION_ID < 70400) { echo '

'; - echo '[301] Your PHP version ('.PHP_VERSION.') is lower than the minimal required 7.3.0!'; + echo '[301] Your PHP version ('.PHP_VERSION.') is lower than the minimal required 7.4.0!'; echo '

'; exit(301); }