Skip to content

Commit 823c4ba

Browse files
authored
Test against PHP 8.3 + 8.4, drop PHP 8.0 (#28)
* Test against PHP 8.3 + 8.4 * Bump actions/checkout dependency * PHP 8.4: Do not use the deprecated constant E_STRICT * Drop support for PHP 8.0
1 parent 536ec69 commit 823c4ba

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [8.0, 8.1, 8.2]
11+
php: [8.1, 8.2, 8.3, 8.4]
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323
"homepage": "https://codeception.com/",
2424
"require": {
25-
"php": "^8.0",
25+
"php": "^8.1",
2626
"codeception/codeception": "*@dev",
2727
"codeception/lib-asserts": "^2.0"
2828
},

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A Codeception module containing various assertions.
99

1010
## Requirements
1111

12-
* `PHP 8.0` or higher.
12+
* `PHP 8.1` or higher.
1313

1414
## Installation
1515

tests/unit.suite.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Codeception Test Suite Configuration
22

33
# suite for unit (internal) tests.
4-
error_level: "E_ALL | E_STRICT"
4+
error_level: "E_ALL"
55
class_name: UnitTester

0 commit comments

Comments
 (0)