PHPLIB-462: Allow installing the latest PHPUnit release

parent 90748471
...@@ -6,3 +6,4 @@ vendor/ ...@@ -6,3 +6,4 @@ vendor/
# PHPUnit # PHPUnit
phpunit.phar phpunit.phar
phpunit.xml phpunit.xml
.phpunit.result.cache
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
"ext-mongodb": "^1.6" "ext-mongodb": "^1.6"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^5.7.27 || ^6.4" "phpunit/phpunit": "^5.7.27 || ^6.4 || ^8.3"
}, },
"autoload": { "autoload": {
"psr-4": { "MongoDB\\": "src/" }, "psr-4": { "MongoDB\\": "src/" },
......
...@@ -2,15 +2,10 @@ ...@@ -2,15 +2,10 @@
<phpunit <phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.3/phpunit.xsd" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.3/phpunit.xsd"
backupGlobals="false" beStrictAboutOutputDuringTests="true"
backupStaticAttributes="false" beStrictAboutChangesToGlobalState="true"
colors="true" colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php" bootstrap="tests/bootstrap.php"
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment