-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.03 KB
/
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
37
38
39
40
41
{
"name": "laravie/predis-async",
"type": "library",
"description": "Asynchronous version of Predis",
"keywords": ["nosql", "redis", "predis"],
"homepage": "http://github.com/laravie/predis-async",
"license": "MIT",
"authors": [
{
"name": "Daniele Alessandri",
"email": "[email protected]",
"homepage": "http://clorophilla.net"
}
],
"autoload": {
"psr-4": {
"Predis\\Async\\": "src/"
}
},
"require": {
"php": "^7.2 || ^8.0",
"predis/predis": "^1.1",
"react/event-loop": "^1.0",
"clue/redis-protocol": "~0.3"
},
"require-dev": {
"phpunit/phpunit": "^8.4 || ^9.0"
},
"replace": {
"predis/predis-async": "*"
},
"suggest": {
"ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
},
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
},
"minimum-stability": "dev"
}