-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
46 lines (42 loc) · 1.12 KB
/
ext_emconf.php
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
<?php
/*
* This file is part of the web-tp3/tp3mods.
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'tp3 Mods',
'description' => 'modifications on tp3 - incl. analytics optout',
'category' => 'module',
'author' => 'Thomas Ruta',
'author_email' => 'email@thomasruta.de',
'author_company' => 'tp3',
'state' => 'beta',
'internal' => '',
'uploadfolder' => '0',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '1.5.1',
'constraints' =>
[
'depends' =>
[
'typo3' => '8.7.0-9.9.99',
'bootstrap_package' => '8.0.0-10.9.99',
],
'conflicts' =>
[
],
'suggests' =>
[
],
],
'autoload' =>
[
'psr-4' =>
[
'Tp3\\Tp3mods\\' => 'Classes',
'Tp3\\Tp3mods\\ErrorHandling\\' => 'src/'
],
],
];