-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.53 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
{
"name": "undkonsorten/typo3-cute-mailing",
"type": "typo3-cms-extension",
"description": "A TYPO3 extension that makes mailing and newsletter sending cute. Send TYPO3 pages as emails (newsletter) to many recipients. Can be used as replacement for direct_mail.",
"homepage": "https://www.undkonsorten.com",
"authors": [
{
"name": "Eike Starkmann",
"email": "[email protected]",
"homepage": "http://undkonsorten.com",
"role": "Developer"
}
],
"license": [
"GPL-2.0+"
],
"keywords": [
"email",
"newsletter",
"TYPO3",
"direct_mail"
],
"support": {
"issues": "https://github.com/undkonsorten/typo3-cute-mailing/issues"
},
"require": {
"ext-json": "*",
"php": "^8.1",
"typo3/cms-backend": "^12.4 || ^13.3",
"typo3/cms-core": "^12.4 || ^13.3",
"typo3/cms-extbase": "^12.4 || ^13.3",
"undkonsorten/taskqueue": "^8.0 || ^9.0",
"symfony/console": "^5.4 || ^6.0 || ^7",
"symfony/mime": "^6.2 || ^7"
},
"suggest": {
"undkonsorten/typo3-cute-mailing-registeraddress": "Connector for recipient list if register/unregister subscriber with registeraddress extension.",
"undkonsorten/typo3-cute-mailing-ttaddress": "tt_address recipient connector. If just tt_address data should be used in recipient list."
},
"autoload": {
"psr-4": {
"Undkonsorten\\CuteMailing\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Undkonsorten\\CuteMailing\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "cute_mailing"
},
"branch-alias":{
"dev-main": "4.1.x-dev"
}
}
}