forked from Phobetor/cache-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·40 lines (40 loc) · 1.2 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
{
"name": "aequasi/cache-bundle",
"type": "library",
"description": "Creates services in Symfony 2, for cache, that can also be used with doctrines three cache types (metadata, result, and query). 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": "aequasi@gmail.com",
"homepage": "https://github.com/aequasi"
}
],
"support": {
"email": "aequasi@gmail.com"
},
"require": {
"php": "~5.3|~7.1",
"symfony/symfony": "~2.2|~3.4",
"doctrine/cache": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
},
"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/"
}
}
}