From 39b3ed91414777789b91279064830d184cad91de Mon Sep 17 00:00:00 2001 From: camer0n Date: Tue, 28 Nov 2023 12:31:50 -0800 Subject: [PATCH] Minimum PHP version set to 7.4. Unit test added for PHP 8.3 --- .github/workflows/test-unit.yml | 3 +-- install.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 60a9a6f7b5..486a5095bf 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -16,11 +16,10 @@ jobs: fail-fast: false matrix: interpreter: - - image: php:5.6 - - image: php:7.0 - image: php:7.4 - image: php:8.1 - image: php:8.2 + - image: php:8.3 db: - image: mysql:5.5 - image: bitnami/mysql:8.0 diff --git a/install.php b/install.php index 5a572ad855..1d443e2aa9 100644 --- a/install.php +++ b/install.php @@ -11,7 +11,7 @@ */ // minimal software version -define('MIN_PHP_VERSION', '5.6'); +define('MIN_PHP_VERSION', '7.4'); define('MIN_MYSQL_VERSION', '4.1.2'); define('MAKE_INSTALL_LOG', true);