From 0815ab8d564971d09782cce2ca4f34303d74261e Mon Sep 17 00:00:00 2001 From: W0rma Date: Mon, 11 Nov 2024 08:17:23 +0100 Subject: [PATCH 1/2] Test against PHP 8.4 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0c1d40b7..72852229 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -67,7 +67,7 @@ jobs: strategy: matrix: - php: [8.0, 8.1, 8.2, 8.3] + php: [8.0, 8.1, 8.2, 8.3, 8.4] steps: - name: Create default database for sqlsrv as image does not support it From 07712b1f4ca4351f77d45ae0916f840b8264c7de Mon Sep 17 00:00:00 2001 From: W0rma Date: Mon, 11 Nov 2024 08:17:46 +0100 Subject: [PATCH 2/2] PHP 8.4: Do not use deprecated constant E_STRICT --- tests/unit.suite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit.suite.yml b/tests/unit.suite.yml index 5399cf41..1c448f5d 100644 --- a/tests/unit.suite.yml +++ b/tests/unit.suite.yml @@ -1,5 +1,5 @@ # Codeception Test Suite Configuration # suite for unit (internal) tests. -error_level: "E_ALL | E_STRICT" +error_level: "E_ALL" class_name: UnitTester