This repository was archived by the owner on Jan 29, 2020. It is now read-only.
Added
-
#76 adds support for PHPUnit 8
Undesired PHPUnit update to ^8.0 can happen on PHP 7.2 and newer when relying on PHPUnit installation as an indirect dependency via zend-test.
Please always declare direct dependency onphpunit/phpunit
with suitable versions alongside withzendframework/zend-test
.PHPUnit 8 incompatible test suite typically would error after the update with messages like "Fatal error: Declaration of *::setUp() must be compatible with *::setUp(): void" for any of the following methods:
setUpBeforeClass()
tearDownAfterClass()
setUp()
tearDown()
Following command can be used to declare explicit dependency on older PHPUnit versions:
composer require --dev phpunit/phpunit:"^7.5.12 || ^6.5.14 || ^5.7.14" --update-with-dependencies
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- Nothing.