From 188b4e6d8a8d0df614c4c7f7f41c6998e388305a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 30 Jan 2017 06:03:54 +0100 Subject: php-react: backport --- composer.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..cbdee52 --- /dev/null +++ b/composer.json @@ -0,0 +1,36 @@ +{ + "name": "react/react", + "description": "Nuclear Reactor written in PHP.", + "keywords": ["event-loop", "reactor", "asynchronous"], + "license": "MIT", + "support": { + "issues": "https://github.com/reactphp/react/issues", + "irc": "irc://irc.freenode.org/reactphp" + }, + "require": { + "php": ">=5.4.0", + "react/cache": "0.4.*", + "react/child-process": "0.4.*", + "react/dns": "0.4.*", + "react/event-loop": "0.4.*", + "react/http-client": "0.4.*", + "react/http": "0.4.*", + "react/promise": "~2.1", + "react/socket-client": "0.4.*", + "react/socket": "0.4.*", + "react/stream": "0.4.*" + }, + "require-dev": { + "phpunit/phpunit": "~4.0" + }, + "suggest": { + "ext-libevent": "Allows for use of a more performant event-loop implementation.", + "ext-libev": "Allows for use of a more performant event-loop implementation.", + "ext-event": "Allows for use of a more performant event-loop implementation." + }, + "extra": { + "branch-alias": { + "dev-master": "0.5-dev" + } + } +} -- cgit