forked from xperseguers/t3ext-direct_mail_userfunc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.33 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
{
"name": "causal/direct_mail_userfunc",
"type": "typo3-cms-extension",
"description": "Adds support for external providers to Direct Mail. This extension extends the types of recipient lists handled by Direct Mail with an entry for parameterized custom lists. These custom lists are prepared by user functions and may easily reuse your own business logic.",
"keywords": [
"TYPO3 CMS",
"direct_mail",
"dynamic list",
"user function",
"external provider"
],
"homepage": "https://github.com/xperseguers/t3ext-direct_mail_userfunc",
"support": {
"issues": "https://github.com/xperseguers/t3ext-direct_mail_userfunc/issues"
},
"authors": [
{
"name": "Xavier Perseguers",
"email": "[email protected]",
"homepage": "https://www.causal.ch",
"role": "Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"php": ">= 7.2.0, <= 7.4.99",
"ext-json": "*",
"typo3/cms-core": "^8.7 || ^9.5 || ^10.4",
"directmailteam/direct-mail": "^5.2 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Causal\\DirectMailUserfunc\\": "Classes/"
}
},
"replace": {
"typo3-ter/direct-mail-userfunc": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
},
"typo3/cms": {
"extension-key": "direct_mail_userfunc"
}
}
}