summaryrefslogtreecommitdiffstats
path: root/vendor/clue/redis-react/composer.json
blob: c1752cc75ce64bf57cd6a59f3a047887c7a7e024 (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
{
    "name": "clue/redis-react",
    "description": "Async Redis client implementation, built on top of ReactPHP.",
    "keywords": ["Redis", "database", "client", "async", "ReactPHP"],
    "homepage": "https://github.com/clue/reactphp-redis",
    "license": "MIT",
    "authors": [
        {
            "name": "Christian Lück",
            "email": "christian@clue.engineering"
        }
    ],
    "require": {
        "php": ">=5.3",
        "clue/redis-protocol": "0.3.*",
        "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
        "react/event-loop": "^1.2",
        "react/promise": "^2.0 || ^1.1",
        "react/promise-timer": "^1.8",
        "react/socket": "^1.9"
    },
    "require-dev": {
        "clue/block-react": "^1.1",
        "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
    },
    "autoload": {
        "psr-4": { "Clue\\React\\Redis\\": "src/" }
    },
    "autoload-dev": {
        "psr-4": { "Clue\\Tests\\React\\Redis\\": "tests/" }
    }
}