-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathext_emconf.php
54 lines (54 loc) · 1.17 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
47
48
49
50
51
52
53
54
<?php
$EM_CONF[$_EXTKEY] = array (
'title' => 'Environment Banner',
'description' => 'Adds a small Banner in both FE and BE and changes title tag to easWier distinct between different Typo3 installations (hopefully no more "Ups - I was on Live all the time...")',
'category' => 'misc',
'shy' => 1,
'version' => '1.0.0',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'uploadfolder' => 1,
'createDirs' => '',
'modify_tables' => '',
'clearcacheonload' => 1,
'lockType' => '',
'author' => 'Carsten Windler',
'author_email' => '[email protected]',
'author_company' => '',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'constraints' =>
array (
'depends' =>
array (
'typo3' => '7.5.0-7.99.99',
),
'conflicts' =>
array (
),
'suggests' =>
array (
),
),
'suggests' =>
array (
),
'autoload' =>
array (
'psr-4' =>
array (
'CarstenWindler\\Cwenvbanner\\' => 'Classes',
),
),
'autoload-dev' =>
array (
'psr-4' =>
array (
'CarstenWindler\\Cwenvbanner\\Tests\\' => 'Tests',
),
),
);