-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
53 lines (53 loc) · 1.31 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
{
"name": "menatwork/synccto",
"description": "Synchronize multiple contao installations with each other",
"keywords": [
"backup",
"synchronization",
"management",
"diff"
],
"type": "contao-bundle",
"homepage": "http://www.men-at-work.de",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Stefan Heimes",
"email": "[email protected]",
"homepage": "http://www.men-at-work.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/menatwork/syncCto/issues",
"wiki": "https://github.com/menatwork/syncCto/wiki",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/menatwork/syncCto"
},
"require": {
"php": "^8.0",
"contao/core-bundle": "^4.4.8",
"menatwork/contao-multicolumnwizard-bundle": "~3.2",
"menatwork/ctocommunication": "^4.0.0",
"contao-community-alliance/dc-general": "^2.1.3"
},
"require-dev": {
"phpcq/all-tasks": "~1.2",
"contao/manager-bundle": "~4.4"
},
"autoload": {
"psr-4": {
"MenAtWork\\SyncCto\\": "src"
},
"classmap": [
"classes/"
]
},
"replace": {
"contao-legacy/synccto": "*"
},
"extra": {
"contao-manager-plugin": "MenAtWork\\SyncCto\\ContaoManager\\Plugin"
}
}