summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 27caca6a3a6295f67d04c37df298ac96f2dab98f (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
{
    "name": "clue/block-react",
    "description": "Lightweight library that eases integrating async components built for ReactPHP in a traditional, blocking environment.",
    "keywords": ["blocking", "await", "sleep", "Event Loop", "synchronous", "Promise", "ReactPHP", "async"],
    "homepage": "https://github.com/clue/reactphp-block",
    "license": "MIT",
    "authors": [
        {
            "name": "Christian Lück",
            "email": "christian@lueck.tv"
        }
    ],
    "autoload": {
        "files": [ "src/functions_include.php" ]
    },
    "require": {
    	"php": ">=5.3",
        "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
        "react/promise": "^2.7 || ^1.2.1",
        "react/promise-timer": "^1.5"
    },
    "require-dev": {
        "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
    }
}