Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nixdrey-wb committed Apr 15, 2024
2 parents bed9818 + c5b02cd commit 198d95c
Show file tree
Hide file tree
Showing 46 changed files with 2,725 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
25 changes: 19 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,29 @@
"name": "nixdrey/wbisualception",
"description": "Visual regression tests for Codeception (fork from https://github.com/Codeception/VisualCeption)",
"homepage": "https://github.com/nixdrey/VisualCeption",
"version": "5.0.0",
"type": "library",
"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 198d95c

Please sign in to comment.