-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 826 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 826 Bytes
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
{
"name": "snakano/cache-store",
"description": "provides a generic way to cache any data",
"license": "MIT",
"keywords": ["cache", "memcached", "apc", "redis"],
"authors": [
{
"name": "Shinya Nakano",
"email": "s.nakano@do-mino.jp"
}
],
"autoload": {
"psr-0": {
"Domino\\CacheStore\\" : "src/"
}
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "~4.8||~5.1"
},
"suggest": {
"ext-apc": "APC >= 3.1.6 to use the APC storage adapter",
"ext-apcu": "APCu >= 4.0.0 to use the APC User Cache",
"ext-memcached": "Memcached >= 1.0.0 to use the Memcached storage adapter",
"ext-redis": "Redis >= 2.2.4 to use the Redis storage adapter"
}
}