forked from doctrine/phpcr-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.84 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.84 KB
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
58
59
60
61
{
"name": "doctrine/phpcr-odm",
"type": "library",
"description": "PHP Doctrine Content Repository Object Document Mapper (ODM) provides transparent persistence for PHP objects.",
"keywords": [
"php",
"content",
"odm",
"data",
"mapper",
"mapping",
"object"
],
"homepage": "https://www.doctrine-project.org/projects/phpcr-odm.html",
"license": "MIT",
"authors":[
{"name":"Jordi Boggiano", "email":"j.boggiano@seld.be"},
{"name":"David Buchmann", "email":"david@liip.ch"},
{"name":"Lukas Kahwe Smith", "email":"smith@pooteeweet.org"}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"doctrine/common": "^2.4",
"doctrine/annotations": "^1.2",
"doctrine/data-fixtures": "^1.0",
"phpcr/phpcr": "^2.1.1",
"phpcr/phpcr-implementation": "^2.1",
"phpcr/phpcr-utils": "^1.3.0",
"doctrine/instantiator": "^1.0.1",
"symfony/console": "^3.3 || ^4.0"
},
"require-dev": {
"symfony/yaml": "^3.3 || ^4.0",
"symfony/phpunit-bridge": "^3.3 || ^4.0",
"liip/rmt": "1.3.*@dev",
"phpunit/phpunit": "^6.0"
},
"suggest": {
"symfony/yaml": "^3.2 || ^4.0",
"jackalope/jackalope-doctrine-dbal": "^1.3",
"jackalope/jackalope-jackrabbit": "^1.3"
},
"conflict": {
"jackalope/jackalope-doctrine-dbal": "<1.1.5",
"jms/serializer": "<1.3.0"
},
"autoload": {
"psr-4": { "Doctrine\\ODM\\PHPCR\\": "lib/Doctrine/ODM/PHPCR" }
},
"autoload-dev": {
"psr-4": { "Doctrine\\Benchmarks\\ODM\\PHPCR\\": "benchmarks" }
},
"bin": ["bin/phpcrodm", "bin/phpcrodm.php"],
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}