forked from rhubarbgroup/redis-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
30 lines (30 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
{
"name": "rhubarbgroup/redis-cache",
"description": "A persistent object cache backend for WordPress powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication and clustering.",
"homepage": "https://github.com/rhubarbgroup/redis-cache",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Till Krüss",
"homepage": "https://till.im/"
}
],
"require": {
"composer/installers": "~1.0",
"mnsami/composer-custom-directory-installer": "^2.0",
"predis/predis": "^1.1",
"colinmollenhour/credis": "^1.11.1"
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0"
},
"extra": {
"installer-paths": {
"dependencies/predis/predis": [ "predis/predis" ],
"dependencies/colinmollenhour/credis": [ "colinmollenhour/credis" ]
}
}
}