From 14ae2d7d06fb8fe05ba05f7c00e68c7b527b51f2 Mon Sep 17 00:00:00 2001 From: RealAngeleno Date: Wed, 26 Jul 2023 20:59:37 -0500 Subject: [PATCH] discontinue php versions before 7.4 --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.php b/install.php index 1662ae77..b894f46c 100644 --- a/install.php +++ b/install.php @@ -729,10 +729,10 @@ if ($step == 0) { $tests = array( array( 'category' => 'PHP', - 'name' => 'PHP ≥ 5.4', + 'name' => 'PHP ≥ 7.4', 'result' => PHP_VERSION_ID >= 50400, 'required' => true, - 'message' => 'vichan requires PHP 5.4 or better.', + 'message' => 'vichan requires PHP 7.4 or better.', ), array( 'category' => 'PHP',