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) · 755 Bytes
/
ext_emconf.php
File metadata and controls
28 lines (28 loc) · 755 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[$_EXTKEY] = [
'title' => 'Fluid Components',
'description' => 'Encapsulated frontend components with Fluid\'s ViewHelper syntax',
'category' => 'fe',
'author' => 'Simon Praetorius',
'author_email' => 'praetorius@sitegeist.de',
'author_company' => 'sitegeist media solutions GmbH',
'state' => 'stable',
'uploadfolder' => false,
'clearCacheOnLoad' => false,
'version' => '2.1.0',
'constraints' => [
'depends' => [
'typo3' => '9.5.0-10.9.99',
'php' => '7.2.0-7.9.99'
],
'conflicts' => [
],
'suggests' => [
],
],
'autoload' => [
'psr-4' => [
'SMS\\FluidComponents\\' => 'Classes'
]
],
];