-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
39 lines (39 loc) · 896 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
38
39
{
"name" : "fixpunkt/fp-newsletter",
"type" : "typo3-cms-extension",
"description" : "Plugin for newsletter subscription and unsubscription (for mail or luxletter). Used table: tt_address or fe_users. A log is written.",
"authors" : [{
"name" : "Kurt Gusbeth",
"role" : "Developer",
"homepage": "https://www.fixpunkt.com"
}
],
"require" : {
"typo3/cms-core" : "~11.5.0 || ~12.4.0"
},
"autoload" : {
"psr-4" : {
"Fixpunkt\\FpNewsletter\\" : "Classes"
}
},
"autoload-dev" : {
"psr-4" : {
"Fixpunkt\\FpNewsletter\\Tests\\" : "Tests"
}
},
"replace" : {
"typo3-ter/fp-newsletter" : "self.version"
},
"homepage" : "https://www.fixpunkt.com/webentwicklung/typo3/typo3-programmierung",
"license" : "GPL-3.0-or-later",
"keywords" : [
"newsletter subscription",
"dsgvo",
"gdpr"
],
"extra": {
"typo3/cms": {
"extension-key": "fp_newsletter"
}
}
}