From 247c06c9c77e487ddee692760f2ade68dc51d651 Mon Sep 17 00:00:00 2001 From: Jay Trees Date: Mon, 10 Mar 2025 12:34:27 +0100 Subject: [PATCH] feat(compatibility): add php 8.3 --- changelogs/unreleased.md | 2 +- src/pages/install.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/changelogs/unreleased.md b/changelogs/unreleased.md index 843801f0..51a4c62a 100644 --- a/changelogs/unreleased.md +++ b/changelogs/unreleased.md @@ -2,7 +2,7 @@ ### Added -- Nothing +- Support for PHP 8.3 ### Changed diff --git a/src/pages/install.php b/src/pages/install.php index b58b89ba..a903629a 100644 --- a/src/pages/install.php +++ b/src/pages/install.php @@ -110,9 +110,9 @@ switch ($step) { 'label' => __('Compatible'), ], [ - 'filename' => __('PHP Version < 8.3'), + 'filename' => __('PHP Version < 8.4'), 'icon' => 'php', - 'condition' => \version_compare(\PHP_VERSION, '8.3', '<'), + 'condition' => \version_compare(\PHP_VERSION, '8.4', '<'), 'label' => __('Compatible'), ], [