From ddbce21042e86b60a64b9bcdf90cf946cc5c76a1 Mon Sep 17 00:00:00 2001 From: Benjamin Trenkle Date: Thu, 19 Oct 2023 12:47:15 +0200 Subject: [PATCH] Update min PHP requirement to 8.1 (#42174) --- installation/joomla.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/joomla.php b/installation/joomla.php index 7e1910dbfdafa..137e042651c57 100644 --- a/installation/joomla.php +++ b/installation/joomla.php @@ -14,7 +14,7 @@ /** * Define the application's minimum supported PHP version as a constant so it can be referenced within the application. */ -\define('JOOMLA_MINIMUM_PHP', '7.2.5'); +\define('JOOMLA_MINIMUM_PHP', '8.1.0'); if (version_compare(PHP_VERSION, JOOMLA_MINIMUM_PHP, '<')) { echo 'Sorry, your PHP version is not supported.' . PHP_EOL;