-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
ext_emconf.php
25 lines (24 loc) · 954 Bytes
/
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
<?php
/**
* $EM_CONF
*
* @category Extension
* @author Tim Lochmüller
*/
/** @var $_EXTKEY string */
$EM_CONF[$_EXTKEY] = [
'title' => 'Autoloader',
'description' => 'Automatic components loading of ExtBase extensions to get more time for coffee in the company ;) This ext is not a PHP SPL autoloader or class loader - it is better! Loads CommandController, Xclass, Hooks, FlexForms, Slots, TypoScript, TypeConverter, BackendLayouts and take care of createing needed templates, TCA configuration or translations at the right location.',
'version' => '7.4.6',
'state' => 'stable',
'clearCacheOnLoad' => true,
'author' => 'Tim Lochmüller',
'author_email' => '[email protected]',
'author_company' => 'hdnet.de',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.99.99',
'typo3' => '10.4.6-11.5.99',
],
],
];