forked from sonata-project/SonataCacheBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.31 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
{
"name": "sonata-project/cache-bundle",
"description": "This bundle provides caching services",
"keywords": ["cache block"],
"homepage": "https://github.com/sonata-project/SonataCacheBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "http://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataCacheBundle/contributors"
}
],
"minimum-stability": "dev",
"require": {
"symfony/http-foundation": ">=2.1,<2.3-dev",
"symfony/routing": ">=2.1,<2.3-dev",
"symfony/security": ">=2.1,<2.3-dev",
"symfony/process": ">=2.1,<2.3-dev"
},
"require-dev": {
"doctrine/orm": ">=2.2.0"
},
"suggest": {
"doctrine/doctrine-bundle": "ORM support",
"doctrine/orm": "ORM support",
"doctrine/phpcr-bundle": "PHPCR ODM support",
"doctrine/phpcr-odm": "PHPCR ODM support",
"ext-apc": "Caching with ext/apc",
"ext-memcached": "Caching with ext/memcached"
},
"autoload": {
"psr-0": { "Sonata\\CacheBundle": "" }
},
"target-dir": "Sonata/CacheBundle"
}