forked from doctrine/DoctrineBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.66 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
{
"name": "doctrine/doctrine-bundle",
"type": "symfony-bundle",
"description": "Symfony DoctrineBundle",
"keywords": ["DBAL", "ORM", "Database", "Persistence"],
"homepage": "http://www.doctrine-project.org",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
},
{
"name": "Benjamin Eberlei",
"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/framework-bundle": "~2.2",
"doctrine/dbal": "~2.3",
"jdorn/sql-formatter": "~1.1",
"symfony/doctrine-bridge": "~2.2",
"doctrine/doctrine-cache-bundle": "~1.0"
},
"require-dev": {
"doctrine/orm": "~2.3",
"symfony/yaml": "~2.2",
"symfony/validator": "~2.2",
"twig/twig": "~1",
"satooshi/php-coveralls": "~0.6.1",
"phpunit/phpunit": "~3.7",
"phpunit/php-code-coverage": "~1.2",
"phpunit/phpunit-mock-objects": "~1.2"
},
"suggest": {
"symfony/web-profiler-bundle": "to use the data collector",
"doctrine/orm": "The Doctrine ORM integration is optional in the bundle."
},
"autoload": {
"psr-4": { "Doctrine\\Bundle\\DoctrineBundle\\": "" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
}
}