forked from doctrine/DoctrineCacheBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 2.1 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
54
55
56
57
58
59
60
61
62
{
"name": "doctrine/doctrine-cache-bundle",
"homepage": "http://www.doctrine-project.org",
"description": "Symfony2 Bundle for Doctrine Cache",
"keywords": ["cache", "caching"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
},
{
"name": "Benjamin Eberlei",
"email": "[email protected]"
},
{
"name": "Fabio B. Silva",
"email": "[email protected]"
},
{
"name": "Guilherme Blanco",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "http://symfony.com/contributors"
},
{
"name": "Doctrine Project",
"homepage": "http://www.doctrine-project.org/"
}
],
"require": {
"php": ">=5.3.2",
"symfony/security": "~2.2",
"symfony/doctrine-bridge": "~2.2",
"doctrine/inflector": "~1.0",
"doctrine/cache": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "~4",
"symfony/yaml": "~2.2",
"symfony/validator": "~2.2",
"symfony/console": "~2.2",
"symfony/finder": "~2.2",
"symfony/framework-bundle": "~2.2",
"instaclick/coding-standard": "~1.1",
"satooshi/php-coveralls": "~0.6.1",
"squizlabs/php_codesniffer": "~1.5",
"instaclick/object-calisthenics-sniffs": "dev-master",
"instaclick/symfony2-coding-standard": "dev-remaster"
},
"autoload": {
"psr-4": { "Doctrine\\Bundle\\DoctrineCacheBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}