-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
39 lines (37 loc) · 1022 Bytes
/
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
<?php
$EM_CONF[$_EXTKEY] = array (
'title' => 'Hide opcode cache check in system environment check',
'description' => 'In case you are running your TYPO3 system in an environment where no opcode cache is available and you do not want to see errors in the system environment check about that (which causes a lot of emails using the system status update cron job) this extension is for you.',
'category' => 'backend',
'shy' => 0,
'version' => '1.0.2',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearcacheonload' => 1,
'lockType' => '',
'author' => 'Adrian Dymorz',
'author_email' => '[email protected]',
'author_company' => '',
'CGLcompliance' => NULL,
'CGLcompliance_note' => NULL,
'constraints' =>
array (
'depends' =>
array (
'php' => '5.3.0-0.0.0',
'typo3' => '6.0.0-6.2.99'
),
'conflicts' => '',
'suggests' =>
array (
),
),
);
?>