From ed8aab75a2995d577f6102fd30d5dabd9dd818c4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 4 Nov 2020 13:54:03 +0100 Subject: update to 1.4.0 switch to phpunit9 --- composer.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 27caca6..4545462 100644 --- a/composer.json +++ b/composer.json @@ -7,19 +7,23 @@ "authors": [ { "name": "Christian Lück", - "email": "christian@lueck.tv" + "email": "christian@clue.engineering" } ], "autoload": { "files": [ "src/functions_include.php" ] }, + "autoload-dev": { + "psr-4": { "Clue\\Tests\\React\\Block\\": "tests/" } + }, "require": { - "php": ">=5.3", + "php": ">=5.3", "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5", "react/promise": "^2.7 || ^1.2.1", "react/promise-timer": "^1.5" }, "require-dev": { - "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35" + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35", + "react/http": "^1.0" } } -- cgit