Skip to content

Commit 1b6b150

Browse files
authored
Merge pull request #25 from Codeception/codecept5
Codeception 5 support
2 parents 02d8bd3 + 63b7007 commit 1b6b150

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.gitattributes

-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
/tests export-ignore
33
/.gitattributes export-ignore
44
/.gitignore export-ignore
5-
/Robofile.php export-ignore
65
/*.md export-ignore
76
/*.yml export-ignore

.github/workflows/main.yml

+1-1
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

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
22
"name": "codeception/module-asserts",
33
"description": "Codeception module containing various assertions",
4-
"keywords": [ "codeception", "asserts", "assertions" ],
5-
"homepage": "https://codeception.com/",
6-
"type": "library",
74
"license": "MIT",
5+
"type": "library",
6+
"keywords": [
7+
"codeception",
8+
"asserts",
9+
"assertions"
10+
],
811
"authors": [
912
{
1013
"name": "Michael Bodnarchuk"
@@ -17,15 +20,16 @@
1720
"homepage": "https://medium.com/@ganieves"
1821
}
1922
],
20-
"minimum-stability": "RC",
23+
"homepage": "https://codeception.com/",
2124
"require": {
22-
"php": "^7.4 | ^8.0",
23-
"codeception/lib-asserts": "^2.0",
24-
"codeception/codeception": "^4.1 | *@dev"
25+
"php": "^8.0",
26+
"codeception/codeception": "*@dev",
27+
"codeception/lib-asserts": "^2.0"
2528
},
2629
"conflict": {
27-
"codeception/codeception": "<4.1"
30+
"codeception/codeception": "<5.0"
2831
},
32+
"minimum-stability": "dev",
2933
"autoload": {
3034
"classmap": [
3135
"src/"

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 7.4` or higher.
12+
* `PHP 8.0` or higher.
1313

1414
## Installation
1515

0 commit comments

Comments
 (0)