forked from kartolo/direct_mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.08 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": "directmailteam/direct-mail",
"type": "typo3-cms-extension",
"description": "Advanced Direct Mail/Newsletter mailer system with sophisticated options for personalization of emails including response statistics.",
"keywords": [
"TYPO3",
"extension",
"directmail",
"newsletter"
],
"homepage": "https://github.com/kartolo/direct_mail",
"authors": [
{
"name": "Ivan Kartolo",
"role": "Developer"
}
],
"license": [
"GPL-2.0+"
],
"support": {
"issues": "https://forge.typo3.org/projects/extension-direct_mail"
},
"require": {
"typo3/cms-core": ">=7.6,<9.0",
"friendsoftypo3/jumpurl": ">=7.6",
"friendsoftypo3/tt-address": ">=3.2.2"
},
"autoload": {
"psr-4": {
"DirectMailTeam\\DirectMail\\": "Classes",
"Fetch\\": "Resources/Private/Php/Fetch/src/Fetch"
}
},
"replace": {
"direct_mail": "self.version",
"typo3-ter/direct-mail": "self.version"
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
}
}
}