This repository has been archived by the owner on Dec 27, 2017. It is now read-only.
forked from ContaoBlackForest/contao-doctrine-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.57 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
{
"name":"contaoblackforest/contao-doctrine-orm",
"description":"Doctrine ORM for Contao CMS",
"keywords":["contao", "doctrine", "orm"],
"type":"contao-module",
"license":"LGPL-3.0+",
"authors":[
{
"name": "Sven Baumann",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Dominik Tomasi",
"email": "[email protected]",
"role": "Developer"
}
],
"support":{
"issues": "https://github.com/ContaoBlackForest/contao-doctrine-orm/issues",
"source": "https://github.com/ContaoBlackForest/contao-doctrine-orm"
},
"require":{
"php":">=5.3",
"contao/core": ">=2.11.11,<4-dev",
"contaoblackforest/contao-doctrine-dbal": "~1.1",
"contaoblackforest/contao-logger": "~2.0",
"contao-community-alliance/composer-plugin": "~2.0",
"contao-community-alliance/event-dispatcher": "~1",
"doctrine/orm": "2.4.*",
"doctrine/migrations": "~1.0",
"beberlei/DoctrineExtensions": "~1.0",
"jms/serializer": "~0.15",
"jdorn/sql-formatter": "~1.2"
},
"require-dev":{
"phpunit/phpunit":"3.7.*",
"squizlabs/php_codesniffer":"~2.3"
},
"conflict": {
"contao-community-alliance/dc-general": "<2.0.0-beta18"
},
"autoload":{
"psr-0":{
"Contao\\Doctrine\\ORM": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"contao": {
"sources": {
"contao": "system/modules/doctrine-orm"
}
},
"branch-alias": {
"dev-master": "2.1.x-dev",
"dev-develop": "2.2.x-dev"
}
},
"replace": {
"bit3/contao-doctrine-orm": "self.version"
}
}