forked from Kdyby/Redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "kdyby/redis",
"type": "library",
"description": "Redis storage for Nette Framework",
"keywords": ["nette", "kdyby", "redis", "client", "cache"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "filip@prochazka.su"
}
],
"support": {
"email": "filip@prochazka.su",
"issues": "https://github.com/kdyby/redis/issues"
},
"require": {
"php": ">=7.4",
"ext-redis": "*",
"nette/di": "~3.0",
"nette/caching": "~3.1",
"nette/http": "~3.0",
"nette/utils": "~3.0 || ^4.0"
},
"suggest": {
"ext-redis": "The php redis extension https://github.com/nicolasff/phpredis/ is required for connecting to redis server"
},
"require-dev": {
"nette/bootstrap": "~3.0",
"nette/deprecated": "~3.0",
"nette/php-generator": "~3.3 || ^4.0",
"tracy/tracy": "~2.4",
"slevomat/coding-standard": "dev-master",
"nette/tester": "^2.3.1",
"phpstan/phpstan": "^0.12",
"php-parallel-lint/php-parallel-lint": "dev-master",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"Kdyby\\Redis\\": "src/Kdyby/Redis"
}
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\Redis\\": "tests/KdybyTests/Redis"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}