Skip to content

Commit 4947ee9

Browse files
committed
Require Codeception 4 again
1 parent 5c946d1 commit 4947ee9

File tree

4 files changed

+93
-95
lines changed

4 files changed

+93
-95
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: [7.4, 8.0]
1212

1313
steps:
1414
- name: Checkout code

composer.json

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
{
2-
"name": "codeception/lib-innerbrowser",
3-
"description": "Parent library for all Codeception framework modules and PhpBrowser",
4-
"keywords": [ "codeception" ],
5-
"homepage": "https://codeception.com/",
6-
"type": "library",
7-
"license": "MIT",
8-
"authors": [
9-
{
10-
"name": "Michael Bodnarchuk",
11-
"email": "davert@mail.ua",
12-
"homepage": "https://codegyre.com"
13-
},
14-
{
15-
"name": "Gintautas Miselis"
16-
}
17-
],
18-
"minimum-stability": "RC",
19-
"require": {
20-
"php": "^7.4 || ^8.0",
21-
"ext-dom": "*",
22-
"ext-json": "*",
23-
"ext-mbstring": "*",
24-
"codeception/codeception": "^5.0 || *@dev",
25-
"symfony/browser-kit": ">=4.4 <6.0",
26-
"symfony/dom-crawler": ">=4.4 <6.0"
27-
},
28-
"require-dev": {
29-
"codeception/util-universalframework": "dev-master"
30-
},
31-
"conflict": {
32-
"codeception/codeception": "<5.0"
33-
},
34-
"autoload": {
35-
"classmap": [
36-
"src/"
37-
]
38-
},
39-
"config": {
40-
"classmap-authoritative": true
41-
},
42-
"scripts": {
43-
"test": "codecept run --coverage-xml"
44-
}
2+
"name": "codeception/lib-innerbrowser",
3+
"description": "Parent library for all Codeception framework modules and PhpBrowser",
4+
"keywords": [ "codeception" ],
5+
"homepage": "https://codeception.com/",
6+
"type": "library",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Michael Bodnarchuk",
11+
"email": "davert@mail.ua",
12+
"homepage": "https://codegyre.com"
13+
},
14+
{
15+
"name": "Gintautas Miselis"
16+
}
17+
],
18+
"minimum-stability": "RC",
19+
"require": {
20+
"php": "^7.4 | ^8.0",
21+
"ext-dom": "*",
22+
"ext-json": "*",
23+
"ext-mbstring": "*",
24+
"codeception/codeception": "^4.0 | 4.*@dev",
25+
"symfony/browser-kit": ">=4.4 <6.0",
26+
"symfony/dom-crawler": ">=4.4 <6.0"
27+
},
28+
"require-dev": {
29+
"codeception/util-universalframework": "dev-master"
30+
},
31+
"conflict": {
32+
"codeception/codeception": "<4.0"
33+
},
34+
"autoload": {
35+
"classmap": [
36+
"src/"
37+
]
38+
},
39+
"config": {
40+
"classmap-authoritative": true
41+
},
42+
"scripts": {
43+
"test": "codecept run --coverage-xml"
44+
}
4545
}

src/Codeception/Lib/Framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ protected function getInternalDomains(): array
1919
return [];
2020
}
2121

22-
public function _beforeSuite(array $settings = []): void
22+
public function _beforeSuite($settings = [])
2323
{
2424
/**
2525
* reset internal domains before suite, because each suite can have a different configuration

0 commit comments

Comments
 (0)