summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: cbdee52300c5255adb97a14549df3175271a0840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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"
        }
    }
}