forked from arndtteunissen/column-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
32 lines (30 loc) · 844 Bytes
/
ext_emconf.php
File metadata and controls
32 lines (30 loc) · 844 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
27
28
29
30
31
32
<?php
/*
* This file is part of the package arndtteunissen/column-layout.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Column Layout',
'description' => 'Adds column configuration to fluid styled content elements',
'version' => '0.5.2',
'category' => 'fe',
'constraints' => [
'depends' => [
'typo3' => '8.7.0-9.4.99'
]
],
'state' => 'beta',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => true,
'author' => 'Arndtteunissen',
'author_email' => 'dev@arndtteunissen.de',
'author_company' => 'Arndtteunissen',
'autoload' =>[
'psr-4' =>[
'Arndtteunissen\\ColumnLayout\\' => 'Classes/'
]
]
];