forked from sitegeist/fluid-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
28 lines (28 loc) · 765 Bytes
/
ext_emconf.php
File metadata and controls
28 lines (28 loc) · 765 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
<?php
$EM_CONF['fluid_components'] = [
'title' => 'Fluid Components',
'description' => 'Encapsulated frontend components with Fluid\'s ViewHelper syntax',
'category' => 'fe',
'author' => 'Simon Praetorius',
'author_email' => '[email protected]',
'author_company' => 'sitegeist media solutions GmbH',
'state' => 'stable',
'uploadfolder' => false,
'clearCacheOnLoad' => false,
'version' => '2.5.1',
'constraints' => [
'depends' => [
'typo3' => '9.5.0-11.9.99',
'php' => '7.2.0-7.9.99'
],
'conflicts' => [
],
'suggests' => [
],
],
'autoload' => [
'psr-4' => [
'SMS\\FluidComponents\\' => 'Classes'
]
],
];