From 7d90b15d7bb5dae06363a0aa43dbe27aba3042ef Mon Sep 17 00:00:00 2001 From: Dieter Beck Date: Fri, 6 Dec 2024 08:47:35 +0100 Subject: [PATCH 1/3] PHP 8.4: Avoid usage of 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 5399cf4..1c448f5 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 From b8c7d02afd2226722fc3ecaef241cdf6a24b3542 Mon Sep 17 00:00:00 2001 From: Dieter Beck Date: Fri, 6 Dec 2024 08:48:11 +0100 Subject: [PATCH 2/3] 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 879203e..5210368 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - php: [8.1, 8.2, 8.3] + php: [8.1, 8.2, 8.3, 8.4] steps: - name: Checkout code From edf98bdf88543d978ee8039bcf90537f2578c706 Mon Sep 17 00:00:00 2001 From: Dieter Beck Date: Fri, 6 Dec 2024 08:48:59 +0100 Subject: [PATCH 3/3] Fix minimum PHP version --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 3c26e32..8b353df 100644 --- a/readme.md +++ b/readme.md @@ -9,7 +9,7 @@ A Codeception module for testing web application over HTTP. ## Requirements -* `PHP 8.0` or higher. +* `PHP 8.1` or higher. ## Installation