forked from PHPSocialNetwork/phpfastcache
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
39 lines (39 loc) · 1.24 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
{
"name": "phpfastcache/phpfastcache",
"type" : "library",
"description": "PHP Cache Class - Supported Redis, Cookie, Predis, APC, MemCached, WinCache, Files, PDO, Reduce mySQL Call by Caching",
"keywords": ["cache","caching","php cache","mysql cache","apc cache","apc","memcache","memcached","wincache","files cache","pdo cache","cache class","redis","predis","cookie"],
"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.3.0"
},
"suggest": {
"ext-apc": "*",
"ext-mbstring": "*",
"ext-memcached": "*",
"ext-memcache": "*",
"ext-redis": "*",
"ext-predis": "*",
"ext-sqlite": "*"
},
"autoload": {
"files": [
"src/phpFastCache/phpFastCache.php"
]
}
}