-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
43 lines (43 loc) · 1.27 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
{
"name": "tbbc/cache-bundle",
"description": "Symfony Bundle - Cache abstraction and method annotations for controlling cache",
"keywords": ["cache", "caching", "cache abstraction"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Benjamin Dulau",
"email": "benjamin.dulau@gmail.com",
"homepage": "http://www.anonymation.com"
},
{
"name": "Boris Guéry",
"email": "guery.b@gmail.com",
"homepage": "http://borisguery.com"
}
],
"minimum-stability": "dev",
"require": {
"symfony/framework-bundle": ">=2.0",
"doctrine/cache": ">=1.0",
"jms/metadata": "1.*",
"jms/aop-bundle": ">=1.0.0,<1.2-dev",
"symfony/expression-language": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "3.*",
"symfony/class-loader": "~2.3",
"symfony/yaml": "~2.3",
"symfony/finder": "~2.3",
"symfony/browser-kit": "~2.3"
},
"suggest": {
"doctrine/cache": "Allows to use Doctrine Cache library"
},
"autoload": {
"psr-0": {
"Tbbc\\CacheBundle": ""
}
},
"target-dir": "Tbbc/CacheBundle"
}