forked from doctrine/DoctrinePHPCRBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 2.08 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/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",
"prefer-stable": true,
"require": {
"php": "^5.3.9|~7.0",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/doctrine-bridge": "~2.3|~3.0",
"phpcr/phpcr-implementation": "2.1.*",
"phpcr/phpcr-utils": "^1.2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"phpunit/php-code-coverage": "~2.2",
"symfony/form": "~2.3|~3.0",
"doctrine/phpcr-odm": "^1.3.0-rc4",
"symfony-cmf/testing": "^1.3.0",
"matthiasnoback/symfony-dependency-injection-test": "~0.7",
"sllh/php-cs-fixer-styleci-bridge": "~1.1"
},
"suggest": {
"phpcr/phpcr-shell": "If you want native access to PHPCR-Shell to manage the PHPCR repository",
"doctrine/phpcr-odm": "if you want to use the odm as well. require version ^1.3",
"jackalope/jackalope-jackrabbit": "if you want to connect to jackrabbit. require version ^1.3",
"jackalope/jackalope-doctrine-dbal": "if you want to use jackalope-doctrine-dbal. require version ^1.3",
"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.*"
},
"conflict": {
"phpcr/phpcr-shell": "<1.0.0-beta1",
"symfony/framework-bundle": "<2.3.27|>=2.4.0,<2.6.6"
},
"autoload": {
"psr-4": { "Doctrine\\Bundle\\PHPCRBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}