forked from apix/cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.89 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
45
46
47
48
49
50
51
52
53
{
"name": "apix/cache",
"description": "A thin PSR-6 cache wrapper with a generic interface to various caching backends emphasising cache taggging and indexing.",
"type": "library",
"keywords": ["apc", "APCu", "redis", "mongodb", "mongo", "igbinary", "serializer", "json", "pdo", "sqlite", "mysql", "postgres", "pgsql", "memcached", "memcache", "psrCache", "psr-6", "psr-cache", "Filesystem", "session", "cache", "caching"],
"homepage": "https://github.com/frqnck/apix-cache",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Franck Cassedanne",
"email": "franck@ouarz.net"
},
{
"name": "Apix Cache Community",
"homepage": "https://github.com/frqnck/apix-cache/contributors"
}
],
"support": {
"irc": "irc://irc.freenode.org/ouarz"
},
"require": {
"php": "^5.3.2|^7.0",
"psr/cache": "1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^3.7.0|^5.0.5",
"satooshi/php-coveralls": "~0.7.1"
},
"suggest": {
"ext-apc": "Allows to cache into APC data store ~ up to PHP 5.4.",
"ext-apcu": "Allows to use APCu userland caching ~ any PHP version.",
"ext-redis": "So you can cache into Redis servers.",
"ext-mongo": "Allows to cache into MongoDB instances.",
"ext-memcached": "Allows to use Memcached distributed memory caching system",
"ext-pdo": "Allows to cache into PDO supported DBs.",
"ext-pdo_sqlite": "Allows to cache into SQLite.",
"ext-pdo_mysql": "Allows to use MySQL.",
"ext-pdo_pgsql": "Allows to use PostgreSQL"
},
"autoload": {
"psr-4": {
"Apix\\Cache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Apix\\Cache\\tests\\": "tests/"
}
},
"provide": {
"psr/cache-implementation": "~1.0"
}
}