diff options
author | Remi Collet <fedora@famillecollet.com> | 2017-01-30 06:03:54 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2017-01-30 06:03:54 +0100 |
commit | 188b4e6d8a8d0df614c4c7f7f41c6998e388305a (patch) | |
tree | 8d327bcc604f6a6aaec9ea897bab4a145059c480 /composer.json | |
parent | 47b177f2728fdf326bd150605d502fcf268831e9 (diff) |
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 36 |
1 files changed, 36 insertions, 0 deletions
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" + } + } +} |