Skip to content

Commit c5b02cd

Browse files
authored
[834d22b] Improve for codeception 5 and PHP 8.1 (#3) (#78)
[4b5f547] feature/codeception-upgrade-to-v5 (#2) Co-authored-by: koehnlein <[email protected]>
1 parent 92ca816 commit c5b02cd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2712
-1381
lines changed

Diff for: .gitignore

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
.idea/
44
.settings/
55
vendor/
6-
test/integration/tests/_log/
7-
test/integration/tests/_helpers/
8-
test/integration/tests/_data/VisualCeption/SimpleCept.SimpleBlock.png
6+
tests/integration/tests/_log/
7+
tests/integration/tests/_helpers/*
8+
!tests/integration/tests/_helpers/WebGuy.php
9+
tests/integration/tests/_data/VisualCeption/SimpleCept.SimpleBlock.png

Diff for: composer.json

+20-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,30 @@
11
{
2-
"name": "codeception/visualception",
2+
"name": "codeception/module-visualception",
33
"description": "Visual regression tests for Codeception",
4-
"version": "1.0.4",
4+
"version": "5.0.0",
5+
"type": "library",
56
"homepage": "https://github.com/Codeception/VisualCeption",
67
"license": "Apache-2.0",
78
"require": {
8-
"php": ">=5.4.0",
9-
"ext-imagick": "*"
9+
"php": ">=8.0",
10+
"ext-imagick": "*",
11+
"ext-mbstring": "*",
12+
"ext-zip": "*",
13+
"ext-xml": "*",
14+
"codeception/codeception": "^5.0",
15+
"codeception/module-webdriver": "^3.2"
1016
},
1117
"require-dev": {
12-
"codeception/codeception": "2.5.6",
13-
"phpunit/phpunit": "6.5.14"
18+
"phpunit/phpunit": "^9.5"
1419
},
1520
"autoload": {
16-
"classmap": ["module/"]
17-
}
21+
"classmap": [
22+
"src/",
23+
"tests/unit/Codeception/Module/TestCestExample.php"
24+
]
25+
},
26+
"conflict": {
27+
"codeception/codeception": "<5.0"
28+
},
29+
"minimum-stability": "dev"
1830
}

0 commit comments

Comments
 (0)