-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 817 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 817 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": "phy/cache-bundle",
"description": "Cache Bundle for Symfony2 that supports APC, Memcache, Memcached, Redis, Local, and Disk storage.",
"keywords": ["symfony", "apc", "memcache", "memcached", "redis", "disk", "cache"],
"minimum-stability": "dev",
"type": "symfony-bundle",
"authors": [
{
"name": "John Mullanaphy",
"email": "john@jo.mu"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"symfony/framework-bundle": ">=2.3.0",
"symfony/finder": "*"
},
"suggest": {
"ext-zlib": "If zlib is enabled we can compress values regardless of cache system."
},
"autoload": {
"psr-0": {
"PHY\\CacheBundle": ""
}
},
"target-dir": "PHY/CacheBundle"
}