Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

zend-test 3.3.0

Latest
Compare
Choose a tag to compare
@Xerkus Xerkus released this 11 Jun 19:39
· 8 commits to master since this release
release-3.3.0
9cc4ab4

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 on phpunit/phpunit with suitable versions alongside with zendframework/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.