-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.07 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
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
{
"name": "kitano/cache-bundle",
"description": "Cache abstraction",
"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",
"kitano/pel-bundle": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.*"
},
"suggest": {
"doctrine/cache": "Allows to use Doctrine Cache library"
},
"autoload": {
"psr-0": { "Kitano\\CacheBundle": "" }
},
"target-dir": "Kitano/CacheBundle"
}