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