Skip to content

Commit

Permalink
[834d22b] Improve for codeception 5 and PHP 8.1 (#3) (#78)
Browse files Browse the repository at this point in the history
[4b5f547] feature/codeception-upgrade-to-v5 (#2)
Co-authored-by: koehnlein <[email protected]>
  • Loading branch information
ggiak authored Jan 20, 2023
1 parent 92ca816 commit c5b02cd
Show file tree
Hide file tree
Showing 46 changed files with 2,712 additions and 1,381 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.idea/
.settings/
vendor/
test/integration/tests/_log/
test/integration/tests/_helpers/
test/integration/tests/_data/VisualCeption/SimpleCept.SimpleBlock.png
tests/integration/tests/_log/
tests/integration/tests/_helpers/*
!tests/integration/tests/_helpers/WebGuy.php
tests/integration/tests/_data/VisualCeption/SimpleCept.SimpleBlock.png
28 changes: 20 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@
{
"name": "codeception/visualception",
"name": "codeception/module-visualception",
"description": "Visual regression tests for Codeception",
"version": "1.0.4",
"version": "5.0.0",
"type": "library",
"homepage": "https://github.com/Codeception/VisualCeption",
"license": "Apache-2.0",
"require": {
"php": ">=5.4.0",
"ext-imagick": "*"
"php": ">=8.0",
"ext-imagick": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"ext-xml": "*",
"codeception/codeception": "^5.0",
"codeception/module-webdriver": "^3.2"
},
"require-dev": {
"codeception/codeception": "2.5.6",
"phpunit/phpunit": "6.5.14"
"phpunit/phpunit": "^9.5"
},
"autoload": {
"classmap": ["module/"]
}
"classmap": [
"src/",
"tests/unit/Codeception/Module/TestCestExample.php"
]
},
"conflict": {
"codeception/codeception": "<5.0"
},
"minimum-stability": "dev"
}
Loading

0 comments on commit c5b02cd

Please sign in to comment.