-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
46 lines (46 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
{
"name":"madeyourday/contao-rocksolid-frontend-helper",
"description":"Frontend Editing for Contao. Stop stumbling through the backend and edit the elements you want easily and directly.",
"keywords":["contao","frontend-editing"],
"type":"contao-bundle",
"homepage":"https://rocksolidthemes.com/de/contao/plugins/frontend-editing",
"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-frontend-helper/issues",
"source":"https://github.com/madeyourday/contao-rocksolid-frontend-helper"
},
"require":{
"php":">=7.4",
"contao/core-bundle":"^4.13 || ^5.0",
"doctrine/dbal": "^2.11 || ^3.3",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/routing": "^5.4 || ^6.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload":{
"psr-4": {
"MadeYourDay\\RockSolidFrontendHelper\\": "src/"
}
},
"replace":{
"contao-legacy/rocksolid-frontend-helper":"self.version"
},
"extra":{
"contao-manager-plugin": "MadeYourDay\\RockSolidFrontendHelper\\ContaoManagerPlugin"
}
}