From 3e9e16cbf1dc6b56405c37fddf5e83ce41d0ccb9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 16 Dec 2019 15:09:28 +0100 Subject: v1.1.0 from Fedora --- composer.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 24974ec..cc6abf0 100644 --- a/composer.json +++ b/composer.json @@ -7,15 +7,21 @@ "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "~4.8.35 || ^5.7 || ^6.4" + "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35" }, "suggest": { "ext-event": "~1.0 for ExtEventLoop", - "ext-pcntl": "For signal handling support when using the StreamSelectLoop" + "ext-pcntl": "For signal handling support when using the StreamSelectLoop", + "ext-uv": "* for ExtUvLoop" }, "autoload": { "psr-4": { "React\\EventLoop\\": "src" } + }, + "autoload-dev": { + "psr-4": { + "React\\Tests\\EventLoop\\": "tests" + } } } -- cgit