forked from franmomu/DoctrineExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"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": "gediminas.morkevicius@gmail.com"
},
{
"name": "Gustavo Falco",
"email": "comfortablynumb84@gmail.com"
},
{
"name": "David Buchmann",
"email": "david@liip.ch"
}
],
"require": {
"php": "^7.2 || ^8.0",
"behat/transliterator": "~1.2",
"doctrine/annotations": "^1.2",
"doctrine/cache": "^1.0",
"doctrine/collections": "^1.0",
"doctrine/common": "^2.13 || ^3.0",
"doctrine/event-manager": "^1.0"
},
"provide": {
"ext-mongo": "1.6.12"
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.1",
"doctrine/doctrine-bundle": "^2.3",
"doctrine/mongodb-odm": "^2.0",
"doctrine/orm": "^2.6.3",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5",
"symfony/yaml": "^4.1"
},
"conflict": {
"doctrine/mongodb": "<1.3",
"doctrine/mongodb-odm": "<2.0",
"sebastian/comparator": "<2.0"
},
"suggest": {
"doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
"doctrine/orm": "to use the extensions with the ORM"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"autoload": {
"psr-4": {
"Gedmo\\": "src/"
}
},
"scripts": {
"fix-cs": "php bin/php-cs-fixer fix --config=.php_cs.dist"
},
"support": {
"email": "gediminas.morkevicius@gmail.com",
"wiki": "https://github.com/Atlantic18/DoctrineExtensions/tree/main/doc"
}
}