-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (44 loc) · 1.46 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
{
"name": "stefansl/contao-divider-bundle",
"description": "ContentElement for Contao to generate hr. Simply choose element type \"divider\" and save.",
"keywords": ["contao", "extension", "usability", "divider", "horizontal", "rule", "ruler", "hr", "bundle", "pulgin", "content-element", "widget"],
"type": "contao-bundle",
"homepage": "https://github.com/stefansl/contao-divider-bundle",
"license": "LGPL-3.0+",
"authors":[
{
"name":"Stefan Schulz-Lauterbach",
"homepage":"https://clickpress.de",
"role":"Developer"
}
],
"support":{
"issues":"https://github.com/stefansl/contao-divider-bundle/issues",
"source":"https://github.com/stefansl/contao-divider-bundle/"
},
"require":{
"contao/core-bundle":"~4.4 || ^5.0"
},
"replace":{
"contao-legacy/divider":"self.version",
"clickpress/divider":"self.version",
"stefansl/divider":"self.version"
},
"extra":{
"contao-manager-plugin": "StefanSl\\DividerBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"StefanSl\\DividerBundle\\": "src"
},
"classmap": [
"src/Resources/contao"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
}
}