summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 4545462eb1cbbdf477d87cdf675a30a7d6f8c608 (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
{
    "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@clue.engineering"
        }
    ],
    "autoload": {
        "files": [ "src/functions_include.php" ]
    },
    "autoload-dev": {
        "psr-4": { "Clue\\Tests\\React\\Block\\": "tests/" }
    },
    "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": "^9.3 || ^5.7 || ^4.8.35",
        "react/http": "^1.0"
    }
}