forked from doctrine-extensions/DoctrineExtensions
-
Notifications
You must be signed in to change notification settings - Fork 52
/
composer.json
67 lines (67 loc) · 1.67 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
58
59
60
61
62
63
64
65
66
67
{
"name": "gedmo/doctrine-extensions",
"type": "library",
"description": "Doctrine2 behavioral extensions",
"keywords": [
"behaviors",
"doctrine2",
"extensions",
"gedmo",
"sluggable",
"loggable",
"translatable",
"tree",
"nestedset",
"sortable",
"timestampable",
"blameable",
"uploadable"
],
"homepage": "http://gediminasm.org/",
"license": "MIT",
"authors": [
{
"name": "Gediminas Morkevicius",
"email": "[email protected]"
},
{
"name": "Gustavo Falco",
"email": "[email protected]"
},
{
"name": "David Buchmann",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"wiki": "https://github.com/Atlantic18/DoctrineExtensions/tree/master/doc"
},
"require": {
"php": ">=5.3.2",
"behat/transliterator": "~1.0",
"doctrine/common": "~2.4"
},
"require-dev": {
"doctrine/mongodb-odm": ">=1.0.0-BETA11",
"doctrine/orm": "~2.4",
"symfony/yaml": "~2.3",
"phpunit/phpunit": "~4.4",
"phpunit/phpunit-mock-objects": "~2.3"
},
"suggest": {
"doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
"doctrine/orm": "to use the extensions with the ORM"
},
"autoload": {
"psr-0": { "Gedmo\\": "lib/" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
}
}