diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/composer.json b/composer.json index b797318..a5ec626 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { "name": "react/promise-timer", - "description": "Trivial timeout implementation for Promises", + "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.", "keywords": ["Promise", "timeout", "timer", "event-loop", "ReactPHP", "async"], - "homepage": "https://github.com/react/promise-timer", + "homepage": "https://github.com/reactphp/promise-timer", "license": "MIT", "authors": [ { @@ -19,7 +19,10 @@ }, "require": { "php": ">=5.3", - "react/event-loop": "~0.4.0|~0.3.0", - "react/promise": "~2.1|~1.2" + "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5", + "react/promise": "^2.7.0 || ^1.2.1" + }, + "require-dev": { + "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35" } } |