-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.55 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": "aequasi/cache-bundle",
"type": "library",
"description": "Creates services in Symfony 2, for cache, that can also be used with doctrines three cache types. It also provides functionality for session handler support, and Router support.",
"keywords": [
"php",
"cache",
"redis",
"memcached"
],
"homepage": "https://github.com/aequasi/cache-bundle",
"license": "Apache v2",
"authors": [
{
"name": "Aaron Scherer",
"email": "[email protected]",
"homepage": "https://github.com/aequasi"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": "^5.5|^7",
"symfony/framework-bundle": "^2.7|^3.0",
"doctrine/cache": "^1.3",
"aequasi/psr-6-doctrine-bridge": "^1.2",
"psr/cache-implementation": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.1|^4.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/php-fig/cache.git"
}
],
"suggest": {
"ext-memcached": "Allows for caching with Memcached",
"ext-redis": "Allows for caching with Redis"
},
"autoload": {
"psr-4": {
"Aequasi\\Bundle\\CacheBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aequasi\\Bundle\\CacheBundle\\Tests\\": "tests/"
}
}
}