Updated PHPUnit to 8.2.1
The new version contains some improvements in handling mocks (https://github.com/sebastianbergmann/phpunit/issues/3602) and will help identify some existing issues in DBAL 3.0 tests: There were 2 warnings: 1) Doctrine\Tests\DBAL\Driver\OCI8\OCI8StatementTest::testExecute with data set #0 (array('test', null, 'value')) Method bindValue may not return value of type boolean 2) Doctrine\Tests\DBAL\Driver\OCI8\OCI8StatementTest::testExecute with data set #1 (array(null, 'test', 'value')) Method bindValue may not return value of type boolean
Showing
... | ... | @@ -41,7 +41,7 @@ |
"doctrine/coding-standard": "^6.0", | ||
"jetbrains/phpstorm-stubs": "^2019.1", | ||
"phpstan/phpstan": "^0.11.3", | ||
"phpunit/phpunit": "^8.1.6", | ||
"phpunit/phpunit": "^8.2.1", | ||
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0", | ||
"symfony/phpunit-bridge": "^3.4.5|^4.0.5|^5.0" | ||
}, | ||
... | ... |
Please register or sign in to comment