forked from clue/reactphp-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 792 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 792 Bytes
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": "clue/redis-react",
"description": "Async Redis client implementation, built on top of React PHP",
"keywords": ["Redis", "client", "async", "reactphp"],
"homepage": "https://github.com/clue/php-redis-react",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"require": {
"php": ">=5.3",
"react/promise": "^2.0 || ^1.1",
"react/socket-client": "^0.5 || ^0.4 || ^0.3",
"react/event-loop": "0.3.*|0.4.*",
"clue/redis-protocol": "0.3.*",
"evenement/evenement": "~1.0|~2.0"
},
"autoload": {
"psr-4": { "Clue\\React\\Redis\\": "src/" }
},
"require-dev": {
"clue/block-react": "^1.1"
}
}