From f4a48cf0c96066bd060336b1059e4ef00e9e2c8d Mon Sep 17 00:00:00 2001 From: thePanz Date: Thu, 15 Feb 2024 23:16:58 +0100 Subject: [PATCH 1/2] Update min PHP requirement to v7.4 or v8.1 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index a424d6ea6..096711cad 100755 --- a/composer.json +++ b/composer.json @@ -4,8 +4,8 @@ "type": "library", "license": "MIT", "require": { - "php" : ">=5.3.0", - "swiftmailer/swiftmailer": "~5.2 || ^6.0" + "php" : "^7.4 || ^8.1", + "swiftmailer/swiftmailer": "^5.2 || ^6.0" }, "require-dev": { "psr/log": "*" From 70d3deab61d62484bc33092c26a0f07fe24bd4da Mon Sep 17 00:00:00 2001 From: thePanz Date: Thu, 15 Feb 2024 23:18:11 +0100 Subject: [PATCH 2/2] Remove PHP v8.0 from CI workflow --- .github/workflows/continuous-integration.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 47e723aed..3839fbaa0 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -18,7 +18,6 @@ jobs: matrix: php-version: - "7.4" - - "8.0" - "8.1" - "8.2" - "8.3"