forked from apix/cache
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.05 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.05 KB
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
{
"name": "apix/cache",
"description": "A thin cache wrapper with a generic interface to various caching backends emphasising cache taggging and indexing.",
"type": "library",
"keywords": ["apc", "redis", "mongodb", "mongo", "igbinary", "cache", "apix", "serializer", "json", "pdo", "sqlite", "mysql", "postgres", "pgsql", "memcached", "memcache"],
"homepage": "https://github.com/frqnck/apix-cache",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Franck Cassedanne",
"email": "franck@ouarz.net"
}
],
"support": {
"irc": "irc://irc.freenode.org/ouarz"
},
"require": {
"php": ">=5.3"
},
"require-dev": {
"apix/autoloader": "1.0.*"
},
"suggest": {
"ext-apc": "*",
"ext-redis": "*",
"ext-mongo": "*",
"ext-memcached": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-pdo_mysql": "*",
"ext-pdo_pgsql": "*"
},
"autoload": {
"psr-0": { "Apix\\Cache": "src/php" }
}
}