forked from sonata-project/SonataDoctrineORMAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.64 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
{
"name": "sonata-project/doctrine-orm-admin-bundle",
"type": "symfony-bundle",
"description": "Symfony Sonata / Integrate Doctrine ORM into the SonataAdminBundle",
"keywords": ["Admin Generator", "admin", "sonata", "bootstrap", "generator"],
"homepage": "https://sonata-project.org/bundles/admin",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataDoctrineORMAdminBundle/contributors"
}
],
"require": {
"doctrine/orm": "~2.3",
"symfony/form": "~2.3",
"symfony/security": "~2.3",
"symfony/console": "~2.3",
"symfony/doctrine-bridge": "~2.2",
"symfony/framework-bundle": "~2.2",
"sonata-project/exporter": "~1.3,>=1.3.1",
"sonata-project/admin-bundle": "~2.4@dev",
"sonata-project/core-bundle": "~2.3,>=2.3.1"
},
"require-dev": {
"simplethings/entity-audit-bundle": "~0.1",
"symfony/phpunit-bridge": "~2.7|~3.0",
"fabpot/php-cs-fixer": "~0.1|~1.0"
},
"suggest": {
"simplethings/entity-audit-bundle": "If you want to support for versioning of entities and their associations."
},
"provide": {
"sonata-project/admin-bundle-persistency-layer": "1.0.0"
},
"autoload": {
"psr-4": { "Sonata\\DoctrineORMAdminBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.4.x-dev"
}
}
}