-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
44 lines (44 loc) · 1.16 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
{
"name":"menatwork/semantic_html5",
"description":"Create html5 elements as content element",
"keywords":["html5","semantic","contentelements","wrapper"],
"type":"contao-module",
"homepage":"http://www.men-at-work.de",
"license":"LGPL-3.0+",
"authors":[
{
"name":"David Maack",
"email":"[email protected]",
"role":"Developer"
}
],
"support":{
"email":"[email protected]",
"issues":"https://github.com/menatwork/semantic_html5/issues",
"irc":"irc://irc.freenode.org/contao.dev",
"source":"https://github.com/menatwork/semantic_html5"
},
"require":{
"php": "^7.2 || ^8.1",
"contao/core-bundle": "^4.4.8",
"menatwork/contao-multicolumnwizard-bundle": "^3.4"
},
"require-dev":{
"phpcq/phpcq": "~1.0"
},
"autoload": {
"psr-4": {
"SemanticHTML5\\": "src/"
}
},
"replace":{
"contao-legacy/semantic_html5":"*"
},
"extra":{
"contao":{
"sources":{
"contao":"system/modules/semantic_html5"
}
}
}
}