-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
37 lines (37 loc) · 928 Bytes
/
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
{
"name": "directmailteam/direct-mail-subscription",
"type": "typo3-cms-extension",
"description": "Adds a plugin for subscription to direct mail newsletters (collecting subscriptions in the tt_address table).",
"keywords": [
"TYPO3",
"extension",
"directmail",
"newsletter"
],
"homepage": "https://github.com/kartolo/direct_mail_subscription",
"authors": [
{
"name": "Ivan Kartolo",
"role": "Developer"
}
],
"license": [
"GPL-2.0+"
],
"support": {
"issues": "https://forge.typo3.org/projects/extension-direct_mail_subscription"
},
"require": {
"typo3/cms-core": ">=6.2,<8.0"
},
"autoload": {
"psr-4": {
"DirectMailTeam\\DirectMailSubscription\\": "Classes"
},
"files": ["pi/class.dmailsubscribe.php"]
},
"replace": {
"direct_mail_subscription": "self.version",
"typo3-ter/direct_mail_subscription": "self.version"
}
}