forked from mautic/mautic-typo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 2.01 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
58
59
60
61
{
"name": "mautic/mautic-typo3",
"description": "Add-on TYPO3 extension that enhances the \"EXT:marketing_automation\" TYPO3 extension by connecting it to the Mautic Marketing Automation platform: Determine \"Persona\" from Mautic segments. Also provides additional services e.g. language synchronisation between Mautic and TYPO3.",
"keywords": [
"TYPO3 CMS",
"Marketing",
"Automation",
"Mautic"
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://www.leuchtfeuer.com",
"authors": [
{
"name": "Leuchtfeuer Digital Marketing",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.leuchtfeuer.com"
}
],
"support": {
"issues": "https://github.com/mautic/mautic-typo3/issues",
"source": "https://github.com/mautic/mautic-typo3",
"email": "[email protected]",
"docs": "https://docs.typo3.org/p/mautic/mautic-typo3/master/en-us/"
},
"require": {
"php": "<8.0",
"typo3/cms-core": "^10.4.2 || ^11.5",
"typo3/cms-extbase": "^10.4.2 || ^11.5",
"leuchtfeuer/marketing-automation": "^1.3",
"mautic/api-library": "^3.1"
},
"autoload": {
"psr-4": {
"Bitmotion\\Mautic\\": "Classes/"
}
},
"replace": {
"typo3-ter/mautic": "self.version"
},
"suggest": {
"sjbr/static-info-tables": "Extended language configuration for preferred locale for Mautic contacts",
"typo3/cms-form": "TYPO3 form framework for building Mautic forms in TYPO3",
"ext-intl": "For sorting arrays"
},
"config": {
"vendor-dir": "Build/vendor",
"bin-dir": "Build/bin"
},
"scripts": {
"package": "Build/scripts/package.sh"
},
"extra": {
"typo3/cms": {
"extension-key": "mautic",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "Build/web"
}
}
}