Skip to content

Commit b4dd6f3

Browse files
authored
Support for Codeception 5 (#16)
1 parent ae1fa5f commit b4dd6f3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [7.4, 8.0, 8.1]
11+
php: [8.0, 8.1]
1212

1313
steps:
1414
- name: Checkout code

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"name": "Gintautas Miselis"
1414
}
1515
],
16-
"minimum-stability": "RC",
16+
"minimum-stability": "dev",
1717
"require": {
18-
"php": "^7.4 | ^8.0",
19-
"codeception/codeception": "^4.1 | *@dev",
18+
"php": "^8.0",
19+
"codeception/codeception": "^5.0.0-alpha1",
2020
"symfony/finder": "^4.4 | ^5.4 | ^6.0"
2121
},
2222
"conflict": {
23-
"codeception/codeception": "<4.1"
23+
"codeception/codeception": "<5.0"
2424
},
2525
"autoload": {
2626
"classmap": [

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A Codeception module for testing local filesystem.
99

1010
## Requirements
1111

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

1414
## Installation
1515

tests/unit.suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

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

0 commit comments

Comments
 (0)