summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: cc6abf06616c976ec2aedd1d7d01810d0f53008b (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
{
    "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": "^7.0 || ^6.4 || ^5.7 || ^4.8.35"
    },
    "suggest": {
        "ext-event": "~1.0 for ExtEventLoop",
        "ext-pcntl": "For signal handling support when using the StreamSelectLoop",
        "ext-uv": "* for ExtUvLoop"
    },
    "autoload": {
        "psr-4": {
            "React\\EventLoop\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "React\\Tests\\EventLoop\\": "tests"
        }
    }
}