summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 24974eceb24bd87868a52256e1fa40d8c71e3897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "name": "react/event-loop",
    "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
    "keywords": ["event-loop", "asynchronous"],
    "license": "MIT",
    "require": {
        "php": ">=5.3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.8.35 || ^5.7 || ^6.4"
    },
    "suggest": {
        "ext-event": "~1.0 for ExtEventLoop",
        "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
    },
    "autoload": {
        "psr-4": {
            "React\\EventLoop\\": "src"
        }
    }
}