From: William Desportes <williamdes@wdes.fr>
Date: Wed, 17 Apr 2024 22:21:33 +0200
Subject: Require PHP >= 8.2

Due to packaging complexities, PHP 8.2 is required.

Bug: https://github.com/phpmyadmin/phpmyadmin/issues/19092
Origin: vendor
Forwarded: not-needed
---
 index.php                | 6 +++---
 js/messages.php          | 6 +++---
 setup/lib/common.inc.php | 6 +++---
 url.php                  | 6 +++---
 4 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/index.php b/index.php
index 8831d47..9234762 100644
--- a/index.php
+++ b/index.php
@@ -11,10 +11,10 @@ if (! defined('ROOT_PATH')) {
     // phpcs:enable
 }
 
-if (PHP_VERSION_ID < 80000) {
+if (PHP_VERSION_ID < 80200) {
     die(
-        '<p>PHP 8.0.0+ is required ('
-        . '<a href="https://bugs.launchpad.net/ubuntu/+source/symfony/+bug/1975892">Ubuntu Launchpad bug #1975892</a>'
+        '<p>Due to packaging complexities PHP 8.2.0+ is required ('
+        . '<a href="https://bugs.launchpad.net/bugs/2016016">Ubuntu Launchpad bug #2016016</a>'
         . '&nbsp;and&nbsp;<a href="https://github.com/phpmyadmin/phpmyadmin/issues/17503">phpMyAdmin issue #17503</a>'
         . ').</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'
     );
diff --git a/js/messages.php b/js/messages.php
index 1e2b249..e395061 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -15,10 +15,10 @@ if (! defined('ROOT_PATH')) {
     // phpcs:enable
 }
 
-if (PHP_VERSION_ID < 80000) {
+if (PHP_VERSION_ID < 80200) {
     die(
-        '<p>PHP 8.0.0+ is required ('
-        . '<a href="https://bugs.launchpad.net/ubuntu/+source/symfony/+bug/1975892">Ubuntu Launchpad bug #1975892</a>'
+        '<p>Due to packaging complexities PHP 8.2.0+ is required ('
+        . '<a href="https://bugs.launchpad.net/bugs/2016016">Ubuntu Launchpad bug #2016016</a>'
         . '&nbsp;and&nbsp;<a href="https://github.com/phpmyadmin/phpmyadmin/issues/17503">phpMyAdmin issue #17503</a>'
         . ').</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'
     );
diff --git a/setup/lib/common.inc.php b/setup/lib/common.inc.php
index b681566..fcd7eef 100644
--- a/setup/lib/common.inc.php
+++ b/setup/lib/common.inc.php
@@ -6,10 +6,10 @@ use PhpMyAdmin\Common;
 use PhpMyAdmin\Config\ConfigFile;
 use PhpMyAdmin\DatabaseInterface;
 
-if (PHP_VERSION_ID < 80000) {
+if (PHP_VERSION_ID < 80200) {
     die(
-        '<p>PHP 8.0.0+ is required ('
-        . '<a href="https://bugs.launchpad.net/ubuntu/+source/symfony/+bug/1975892">Ubuntu Launchpad bug #1975892</a>'
+        '<p>Due to packaging complexities PHP 8.2.0+ is required ('
+        . '<a href="https://bugs.launchpad.net/bugs/2016016">Ubuntu Launchpad bug #2016016</a>'
         . '&nbsp;and&nbsp;<a href="https://github.com/phpmyadmin/phpmyadmin/issues/17503">phpMyAdmin issue #17503</a>'
         . ').</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'
     );
diff --git a/url.php b/url.php
index ebf69df..e972037 100644
--- a/url.php
+++ b/url.php
@@ -11,10 +11,10 @@ if (! defined('ROOT_PATH')) {
     // phpcs:enable
 }
 
-if (PHP_VERSION_ID < 80000) {
+if (PHP_VERSION_ID < 80200) {
     die(
-        '<p>PHP 8.0.0+ is required ('
-        . '<a href="https://bugs.launchpad.net/ubuntu/+source/symfony/+bug/1975892">Ubuntu Launchpad bug #1975892</a>'
+        '<p>Due to packaging complexities PHP 8.2.0+ is required ('
+        . '<a href="https://bugs.launchpad.net/bugs/2016016">Ubuntu Launchpad bug #2016016</a>'
         . '&nbsp;and&nbsp;<a href="https://github.com/phpmyadmin/phpmyadmin/issues/17503">phpMyAdmin issue #17503</a>'
         . ').</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'
     );
