forked from doctrine/DoctrinePHPCRBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.77 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
{
"name": "doctrine/phpcr-bundle",
"type": "symfony-bundle",
"description": "Symfony DoctrinePHPCRBundle",
"keywords": ["PHPCR", "ODM", "Database", "Persistence"],
"homepage": "http://www.doctrine-project.org",
"license": "MIT",
"authors": [
{
"name":"Lukas Kahwe Smith",
"email":"[email protected]"
},
{
"name": "Benjamin Eberlei",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.3",
"symfony/doctrine-bridge": "~2.3",
"phpcr/phpcr-implementation": "2.1.*",
"phpcr/phpcr-utils": "~1.1.0"
},
"require-dev": {
"symfony/form": "~2.2",
"doctrine/phpcr-odm": "1.1.*",
"jackalope/jackalope-jackrabbit": "~1.1.0",
"symfony-cmf/testing": "1.1.*",
"matthiasnoback/symfony-dependency-injection-test": "0.*"
},
"suggest": {
"doctrine/phpcr-odm": "if you want to use the odm as well. require version 1.1.*",
"jackalope/jackalope-jackrabbit": "if you want to connect to jackrabbit. require version ~1.0.1",
"jackalope/jackalope-doctrine-dbal": "if you want to use jackalope-doctrine-dbal. require version 1.0.*",
"doctrine/data-fixtures": "if you want to use the fixture loading.",
"doctrine/doctrine-bundle": "when using jackalope-doctrine-dbal",
"burgov/key-value-form-bundle": "to edit assoc multivalue properties. require version 1.0.*"
},
"autoload": {
"psr-0": { "Doctrine\\Bundle\\PHPCRBundle": "" }
},
"target-dir": "Doctrine/Bundle/PHPCRBundle",
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}