forked from TYPO3-directmail/direct_mail
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathext_emconf.php
More file actions
29 lines (28 loc) · 852 Bytes
/
Copy pathext_emconf.php
File metadata and controls
29 lines (28 loc) · 852 Bytes
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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Direct Mail',
'description' => 'Advanced Direct Mail/Newsletter mailer system with sophisticated options for personalization of emails including response statistics.',
'category' => 'module',
'author' => 'Ivan Kartolo',
'author_email' => 'ivan.kartolo@dkd.de',
'author_company' => 'd.k.d Internet Service GmbH',
'state' => 'alpha',
'version' => '10.0.0',
'constraints' => [
'depends' => [
'typo3' => '13.4.0-13.4.99',
'lowlevel' => '13.4.0-13.99.99',
'tt_address' => '9.0.0-10.0.99',
'php' => '8.2.0-8.4.99',
],
'conflicts' => [
],
'suggests' => [
],
],
'autoload' => [
'psr-4' => [
'DirectMailTeam\\DirectMail\\' => 'Classes/',
],
],
];