forked from sonata-project/SonataDoctrinePhpcrAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.57 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
{
"name": "sonata-project/doctrine-phpcr-admin-bundle",
"type": "symfony-bundle",
"description": "Symfony Sonata / Integrate Doctrine PHPCR into the SonataAdminBundle",
"keywords": ["Admin Generator", "admin", "sonata", "bootstrap"],
"license": "MIT",
"authors": [
{
"name": "Nacho Martin",
"email": "[email protected]",
"homepage": "http://nacho-martin.com"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataDoctrinePHPCRAdminBundle/contributors"
}
],
"require": {
"php": "^5.3.3 || ^7.0",
"doctrine/phpcr-bundle": "^1.1",
"doctrine/phpcr-odm": "^1.1",
"sonata-project/admin-bundle": "^2.2.9",
"sonata-project/jquery-bundle": "1.8.*",
"symfony-cmf/tree-browser-bundle": "^1.0",
"symfony/framework-bundle": "^2.3",
"symfony/property-access": "^2.2"
},
"require-dev": {
"jackalope/jackalope-jackrabbit": "^1.0",
"sllh/php-cs-fixer-styleci-bridge": "^2.0"
},
"provide": {
"sonata-project/admin-bundle-persistency-layer": "1.0.0"
},
"autoload": {
"psr-4": { "Sonata\\DoctrinePHPCRAdminBundle\\": "" },
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": { "Sonata\\DoctrinePHPCRAdminBundle\\Tests\\": "Tests/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}