From 8f3f6aa30c646e13d4604c9d979ae575813680df Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Tue, 16 Nov 2021 14:08:32 -0800 Subject: [PATCH] upgrade phpunit --- .gitignore | 1 + composer.json | 2 +- tests/integration/CacheTest.php | 2 +- tests/unit/DateTest.php | 2 +- tests/unit/URLTest.php | 2 +- tests/unit/UtilsTest.php | 2 +- 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 088f5c9..fcf8e69 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ composer.lock vendor/ coverage/ .DS_Store +.phpunit.result.cache diff --git a/composer.json b/composer.json index 17f867a..1bdf4d7 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.8.13", + "phpunit/phpunit": "^8.5", "predis/predis": "1.1.*" }, "autoload": { diff --git a/tests/integration/CacheTest.php b/tests/integration/CacheTest.php index 65e0350..89b023b 100644 --- a/tests/integration/CacheTest.php +++ b/tests/integration/CacheTest.php @@ -1,5 +1,5 @@