forked from Gernott/mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
36 lines (36 loc) · 1.1 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
<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Mask',
'description' => 'Create your own content elements and page templates. Easy to use, even without programming skills because of the comfortable drag&drop system. Stored in structured database tables. Style your frontend with Fluid tags. Ideal, if you want to switch from Templavoila.',
'category' => 'plugin',
'author' => 'WEBprofil - Gernot Ploiner e.U.',
'author_email' => '[email protected]',
'author_company' => 'WEBprofil - Gernot Ploiner e.U.',
'shy' => '',
'priority' => '',
'module' => '',
'state' => 'stable',
'internal' => '',
'uploadfolder' => '0',
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 1,
'lockType' => '',
'version' => '2.1.0',
'constraints' => array(
'depends' => array(
'typo3' => '7.6.0-8.2.99',
),
'conflicts' => array(),
'suggests' => array(
'gridelements' => ''
),
),
'autoload' =>
array(
'psr-4' =>
array(
"MASK\\Mask\\" => "Classes/"
)
)
);