Skip to content

Commit

Permalink
Merge pull request #1 from 1FF/Update-package-to-php8
Browse files Browse the repository at this point in the history
Update package to php v8
  • Loading branch information
zzhelqzkov authored Jun 19, 2024
2 parents e2b3574 + d95cbe2 commit b9b7d49
Show file tree
Hide file tree
Showing 46 changed files with 2,715 additions and 1,378 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 b9b7d49

Please sign in to comment.