The PHPUnit development team is pleased to announce the immediate availability of PHPUnit 9. This release adds new features, changes and removes existing features, and fixes bugs.
A detailed list of changes is available here. More background on some of these changes is given here.
Active support for PHP 7.2 ended on November 30, 2019. The only actively supported versions of PHP as of February 7, 2020 are PHP 7.3 and PHP 7.4.
The first lines of code for PHPUnit were written back when PHP 4 was the "latest and greatest". In order to keep PHPUnit compatible with new versions of PHP and to make new features possible, the codebase of PHPUnit needs constant modernization.
It has taken Sebastian Bergmann thousands of hours to develop, test, and support PHPUnit.
Perhaps now is the time to contribute to the development of PHPUnit or sponsor Sebastian's work.
A lot of time and effort went into the development of PHPUnit 9 to make better use of language features such as strict interpretation of scalar type declarations, for instance, that were introduced in PHP 7.
The following functionality was removed:
assertEquals()
and assertNotEquals()
assertContains()
and assertNotContains()
assertFileEquals()
etc.assertInternalType()
and assertNotInternalType()
assertArraySubset()
setUseErrorHandler()
expectExceptionMessageRegExp()
The following features have been deprecated in PHPUnit 9:
expectException(PHPUnit\Framework\Error\*)
MockBuilder::setMethods()
ClassName<*>
as values for @covers
and @uses
annotationsThe features deprecated in PHPUnit 9 will be removed in PHPUnit 10.
We distribute a PHP Archive (PHAR) that contains everything you need in order to use PHPUnit. Alternatively, you may use Composer to download and install PHPUnit as well as its dependencies.
Here is a tutorial that gets you started.
Detailed information on supported versions of PHPUnit is available here. Below is a summary as of February 7, 2020: