forked from PHPSocialNetwork/phpfastcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.54 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
{
"name": "phpfastcache/phpfastcache",
"type" : "library",
"description": "PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), CouchBase, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache.",
"keywords": ["cache","caching","php cache","mysql cache","apc","apcu","memcache","memcached","wincache","files cache","pdo cache","cache class","redis","predis","cookie", "mongodb", "couchbase", "LevelDb", "Ssdb", "Wincache", "xcache"],
"homepage": "http://www.phpfastcache.com",
"license": "MIT",
"authors": [
{
"name": "Khoa Bui",
"email": "[email protected]",
"homepage": "http://www.phpfastcache.com",
"role": "Developer"
},
{
"name": "Georges.L",
"email": "[email protected]",
"homepage": "https://github.com/Geolim4",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"psr/cache": "~1.0.0",
"predis/predis": "~1.0.0",
"phpfastcache/phpssdb": "~0.0.0",
"ext-json": "*"
},
"suggest": {
"ext-apc": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-memcached": "*",
"ext-memcache": "*",
"ext-redis": "*",
"ext-predis": "*",
"ext-sqlite": "*"
},
"autoload": {
"psr-4": {
"phpFastCache\\": "src/phpFastCache/"
}
}
}