summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-07-03 10:03:15 +0200
committerRemi Collet <remi@remirepo.net>2018-07-03 10:03:15 +0200
commitfa91282253c7ee851f14993d2389dd9e775724a8 (patch)
treeb28f6c21a02ff11e2366fe86c8ac7f8394512448 /composer.json
parentb77707cddab2a9cf5f2a2d61bae7ae87e916c8ec (diff)
v1.3.0 from Fedora:
* Sun Jul 01 2018 Shawn Iwinski <shawn@iwin.ski> - 1.3.0-1 - Update to 1.3.0 (RHBZ #1591266) - Add range version dependencies for Fedora >= 27 || RHEL >= 8 - Add composer.json to repo
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json15
1 files changed, 9 insertions, 6 deletions
diff --git a/composer.json b/composer.json
index f28bce8..ce437a3 100644
--- a/composer.json
+++ b/composer.json
@@ -1,8 +1,8 @@
{
"name": "clue/block-react",
- "description": "Integrate async React PHP components into your blocking environment",
- "keywords": ["Event Loop", "blocking", "synchronous", "Promise", "ReactPHP", "async"],
- "homepage": "https://github.com/clue/php-block-react",
+ "description": "Lightweight library that eases integrating async components built for ReactPHP in a traditional, blocking environment.",
+ "keywords": ["blocking", "await", "sleep", "Event Loop", "synchronous", "Promise", "ReactPHP", "async"],
+ "homepage": "https://github.com/clue/reactphp-block",
"license": "MIT",
"authors": [
{
@@ -15,8 +15,11 @@
},
"require": {
"php": ">=5.3",
- "react/event-loop": "0.4.*|0.3.*",
- "react/promise": "~2.1|~1.2",
- "react/promise-timer": "~1.0"
+ "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"
}
}