forked from vanht/predis-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 979 Bytes
/
composer.json
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
33
34
35
36
{
"name": "ashleigh-hopkins/predis-async",
"type": "library",
"description": "Asynchronous version of Predis",
"keywords": ["nosql", "redis", "predis"],
"homepage": "https://github.com/ashleigh-hopkins/predis-async",
"license": "MIT",
"authors": [
{
"name": "Daniele Alessandri",
"email": "suppakilla@gmail.com",
"homepage": "http://clorophilla.net"
}
],
"require": {
"php": ">=7.2",
"predis/predis": "^1.1",
"react/event-loop": "^1.0.0",
"clue/redis-protocol": "~0.3",
"react/promise": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"suggest": {
"ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
},
"autoload": {
"psr-4": {"Predis\\Async\\": "src/"}
},
"extra": {
"branch-alias": {
"dev-master": "0.3.0-dev"
}
}
}