forked from brainworxx/form_newsletter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.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
{
"name": "brainworxx/form-newsletter",
"type": "typo3-cms-extension",
"description": "This extension combines the Form extension with the newsletter service Newsletter2go. It creates a new finisher which can add new recipients to your Newsletter2go account.",
"homepage": "https://github.com/brainworxx/form_newsletter",
"authors": [
{
"name": "Brainworxx",
"homepage": "http://www.brainworxx.de/"
}
],
"keywords": [
"newsletter2go",
"newsletter",
"form"
],
"license": ["LGPL-2.1-or-later"],
"require": {
"typo3/cms-core": ">=8.7.0 <=9.5.99",
"typo3/cms-form": ">=8.7.0 <=9.5.99"
},
"autoload": {
"psr-4": {
"Brainworxx\\FormNewsletter\\": "Classes"
}
},
"replace": {
"form_newsletter": "self.version",
"typo3-ter/form-newsletter": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "form_newsletter"
}
}
}