From 97c2c01f98f59e3e20b2130a50f4e6d737065b6a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 4 Nov 2020 13:53:11 +0100 Subject: update to 1.5.0 switch to phpunit9 --- composer.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 834f2d4..797fb53 100644 --- a/composer.json +++ b/composer.json @@ -7,17 +7,20 @@ "authors": [ { "name": "Christian Lück", - "email": "christian@lueck.tv" + "email": "christian@clue.engineering" } ], "require": { "php": ">=5.3" }, "require-dev": { - "phpunit/phpunit": "^5.0 || ^4.8" + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" }, "autoload": { "psr-4": { "Clue\\StreamFilter\\": "src/" }, "files": [ "src/functions_include.php" ] + }, + "autoload-dev": { + "psr-4": { "Clue\\Tests\\StreamFilter\\": "tests/" } } } -- cgit