summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json10
1 files changed, 8 insertions, 2 deletions
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"
+ }
}
}