From fa91282253c7ee851f14993d2389dd9e775724a8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 3 Jul 2018 10:03:15 +0200 Subject: v1.3.0 from Fedora: * Sun Jul 01 2018 Shawn Iwinski - 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 --- composer.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'composer.json') 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" } } -- cgit