-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
47 lines (47 loc) · 1.43 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
{
"name":"madeyourday/contao-rocksolid-custom-elements",
"description":"Create your own, nestable content elements using a modular system. End the WYSIWYG chaos with your own content elements.",
"keywords":["contao","custom-elements","content-elements"],
"type":"contao-bundle",
"homepage":"https://rocksolidthemes.com/de/contao/plugins/custom-content-elements",
"license":"MIT",
"authors":[
{
"name":"RockSolid Themes",
"homepage":"https://rocksolidthemes.com/de/contao-themes",
"role":"Developer"
}
],
"support":{
"forum":"http://help.rocksolidthemes.com/discussions/contao",
"issues":"https://github.com/madeyourday/contao-rocksolid-custom-elements/issues",
"source":"https://github.com/madeyourday/contao-rocksolid-custom-elements"
},
"require":{
"php":">=7.4",
"contao/core-bundle":"^4.13 || ^5.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"suggest": {
"madeyourday/contao-rocksolid-columns": "For grid column support. See documentation for more information."
},
"conflict": {
"contao/core": "*",
"contao/core-bundle": "4.4.1",
"contao/manager-plugin": "<2.0 || >=3.0",
"madeyourday/contao-rocksolid-frontend-helper": "<=2.1.2"
},
"autoload":{
"psr-4": {
"MadeYourDay\\RockSolidCustomElements\\": "src/"
}
},
"replace":{
"contao-legacy/rocksolid-custom-elements":"self.version"
},
"extra":{
"contao-manager-plugin": "MadeYourDay\\RockSolidCustomElements\\ContaoManagerPlugin"
}
}