summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-12-16 15:09:28 +0100
committerRemi Collet <remi@remirepo.net>2019-12-16 15:09:28 +0100
commit3e9e16cbf1dc6b56405c37fddf5e83ce41d0ccb9 (patch)
treeccd2867d3de0969f4eeb08d79dbabd8fd57d86f4 /composer.json
parenta0080c0a825a9598348ce879c8317dddd7f4d316 (diff)
v1.1.0 from Fedora
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"
+ }
}
}