forked from contao-community-alliance/dc-general
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.45 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 2.45 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
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
88
89
90
{
"name": "designs2/dc-general",
"description": "Universal data container for Contao",
"keywords": [
"framework",
"data",
"container",
"driver",
"php",
"contao"
],
"type": "contao-module",
"homepage": "http://c-c-a.org/",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Christian Schiffler",
"email": "c.schiffler@cyberspectrum.de",
"homepage": "http://www.cyberspectrum.de",
"role": "Developer"
},
{
"name": "Andreas Isaak",
"email": "info@andreas-isaak.de",
"homepage": "http://www.andreas-isaak.de",
"role": "Developer"
},
{
"name": "Stefan Heimes",
"email": "stefan_heimes@hotmail.com",
"role": "Developer"
},
{
"name": "Tristan Lins",
"email": "tristan.lins@bit3.de",
"homepage": "http://bit3.de/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/contao-community-alliance/dc-general/issues",
"wiki": "http://de.contaowiki.org/DC_General",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/designs2/dc-general"
},
"require": {
"php": ">=5.3",
"contao/core": ">=3.2,<3.7",
"contao-community-alliance/composer-plugin": "*",
"designs2/event-dispatcher": "*",
"designs2/translator": "*",
"designs2/events-contao-bindings": "*",
"symfony/expression-language": "~2.4"
},
"require-dev": {
"phpcq/all-tasks": "~1.0",
"contao-community-alliance/contao-twig": "~1.12"
},
"conflict": {
"contao/core": "3.4.0"
},
"replace": {
"metamodels/dc_general": "self.version"
},
"autoload": {
"classmap": [
"src/DC_General.php",
"src/ContaoCommunityAlliance/DcGeneral/DC_General.php"
],
"psr-0": {
"ContaoCommunityAlliance\\DcGeneral": "src"
}
},
"autoload-dev": {
"psr-0": {
"ContaoCommunityAlliance\\DcGeneral": "tests"
}
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/dc-general"
}
},
"branch-alias": {
"dev-develop": "2.0.x-dev"
}
},
"minimum-stability": "dev"
}