forked from FriendsOfTYPO3/compatibility6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
26 lines (26 loc) · 789 Bytes
/
ext_emconf.php
File metadata and controls
26 lines (26 loc) · 789 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
<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Compatibility Mode for TYPO3 CMS 6.x',
'description' => 'Provides an additional backwards-compatibility layer with legacy functionality for sites that haven\'t fully migrated to v7 yet.',
'category' => 'be',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'author' => 'TYPO3 CMS Team',
'author_email' => '',
'author_company' => '',
'version' => '7.6.0',
'constraints' => array(
'depends' => array(
'typo3' => '6.0.0-7.99.99',
),
'conflicts' => array(),
'suggests' => array(),
),
'autoload' => array(
'psr-4' => array(
'TYPO3\\CMS\\Compatibility6\\' => 'Classes',
),
),
);