-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.18 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.18 KB
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
42
43
44
{
"name": "ethanhann/redisearch-php",
"type": "library",
"autoload": {
"psr-4": {
"Ehann\\RediSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ehann\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Ethan Hann",
"email": "ethanhann@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["bin/redisearch"],
"require": {
"php": ">=8.2",
"psr/log": "^3.0.0",
"ethanhann/redis-raw": "^3.0.2",
"symfony/console": "^7.0 || ^8.0"
},
"suggest": {
"predis/predis": "Required for the predis adapter (default CLI adapter)",
"ext-redis": "Required for the phpredis adapter",
"cheprasov/php-redis-client": "Required for the RedisClient adapter"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"mockery/mockery": "^1.6.0",
"predis/predis": "^v2.0.0",
"friendsofphp/php-cs-fixer": "^v3.10.0",
"monolog/monolog": "^3.2.0",
"ukko/phpredis-phpdoc": "^5.0@beta",
"cheprasov/php-redis-client": "^1.9"
}
}