Skip to content

Commit

Permalink
Merge pull request #25 from Codeception/codecept5
Browse files Browse the repository at this point in the history
Codeception 5 support
  • Loading branch information
Naktibalda committed Feb 16, 2022
2 parents 02d8bd3 + 63b7007 commit 1b6b150
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
/tests export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/Robofile.php export-ignore
/*.md export-ignore
/*.yml export-ignore
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [7.4, 8.0, 8.1]
php: [8.0, 8.1]

steps:
- name: Checkout code
Expand Down
20 changes: 12 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"name": "codeception/module-asserts",
"description": "Codeception module containing various assertions",
"keywords": [ "codeception", "asserts", "assertions" ],
"homepage": "https://codeception.com/",
"type": "library",
"license": "MIT",
"type": "library",
"keywords": [
"codeception",
"asserts",
"assertions"
],
"authors": [
{
"name": "Michael Bodnarchuk"
Expand All @@ -17,15 +20,16 @@
"homepage": "https://medium.com/@ganieves"
}
],
"minimum-stability": "RC",
"homepage": "https://codeception.com/",
"require": {
"php": "^7.4 | ^8.0",
"codeception/lib-asserts": "^2.0",
"codeception/codeception": "^4.1 | *@dev"
"php": "^8.0",
"codeception/codeception": "*@dev",
"codeception/lib-asserts": "^2.0"
},
"conflict": {
"codeception/codeception": "<4.1"
"codeception/codeception": "<5.0"
},
"minimum-stability": "dev",
"autoload": {
"classmap": [
"src/"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A Codeception module containing various assertions.

## Requirements

* `PHP 7.4` or higher.
* `PHP 8.0` or higher.

## Installation

Expand Down

0 comments on commit 1b6b150

Please sign in to comment.