diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 15 |
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" } } |