-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.92 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": "avisota/contao-message-element-hyperlink",
"description": "The hyperlink message element.",
"keywords": [
"avisota",
"email",
"mail",
"newsletter",
"marketing"
],
"type": "contao-module",
"homepage": "http://avisota.org",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Sven Baumann",
"email": "[email protected]",
"homepage": "http://avisota.org",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://avisota.atlassian.net/browse/CM/component/10108",
"forum": "https://community.contao.org/de/forumdisplay.php?121-Avisota",
"wiki": "http://de.contaowiki.org/Kategorie:Avisota",
"irc": "irc://irc.freenode.org/avisota",
"source": "https://github.com/avisota/contao-message-element-hyperlink"
},
"require": {
"php": "^5.6",
"contao/core": "^3.5.5",
"contao-community-alliance/composer-plugin": "^2.4",
"contao-community-alliance/dc-general": "^2.0.0@beta",
"contao-community-alliance/events-create-options": "^1.0@dev",
"avisota/contao-core": "^3.1",
"avisota/contao-message": "^3.2",
"avisota/contao-message-element-headline": "^3.1"
},
"require-dev": {
"phpcq/all-tasks": "^1.2"
},
"autoload": {
"psr-4": {
"Avisota\\Contao\\Message\\Element\\Hyperlink\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Avisota\\Test\\Contao\\Message\\Element\\Hyperlink\\": "tests/Test"
}
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/avisota-message-element-hyperlink"
}
},
"branch-alias": {
"dev-master": "3.2.x-dev",
"dev-develop": "3.3.x-dev"
}
}
}