forked from menatwork/semantic_html5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.35 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
{
"name": "hofff/contao-html-elements",
"description": "Create html5 elements as content element",
"keywords": [
"html5",
"semantic",
"contentelements",
"wrapper"
],
"type": "contao-bundle",
"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": "^8.1",
"contao/core-bundle": "^4.13 || ^5.3",
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
"symfony/http-kernel": "^5.4 || 6.4 || ^7.0"
},
"require-dev": {
"contao/manager-plugin": "^2.13"
},
"conflict": {
"contao/manager-plugin": "<2.13 | >= 3.0"
},
"autoload": {
"psr-4": {
"SemanticHTML5\\": "src/"
}
},
"replace": {
"contao-legacy/semantic_html5": "*",
"menatwork/semantic_html5": "*"
},
"extra": {
"contao-manager-plugin": "SemanticHTML5\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": true,
"contao/manager-plugin": true
}
}
}