-
Notifications
You must be signed in to change notification settings - Fork 16
/
ext_emconf.php
46 lines (45 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
<?php
/***************************************************************
* Extension Manager/Repository config file for ext "rn_base".
*
* Auto generated 03-02-2015 22:12
*
* Manual updates:
* Only the data in the array - everything else is removed by next
* writing. "version" and "dependencies" must not be touched!
***************************************************************/
$EM_CONF['rn_base'] = [
'title' => 'A base library for extensions.',
'description' => 'TYPO3 plugins based on rn_base can use MVC design principles and domain driven development. This extension also provides an abstraction layer for TYPO3 API to support LTS version since 6.2.',
'category' => 'misc',
'version' => '1.19.1',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => 'typo3temp/rn_base/',
'clearcacheonload' => 0,
'author' => 'Rene Nitzsche',
'author_email' => '[email protected]',
'author_company' => 'System 25',
'constraints' => [
'depends' => [
'typo3' => '8.7.0-12.4.99',
'php' => '7.1.0-8.9.99',
],
'conflicts' => [
],
'suggests' => [
],
],
'suggests' => [
],
'autoload' => [
'psr-4' => [
'Sys25\\RnBase\\' => 'Classes',
'Contrib\\' => 'Resources/Private/Php/Contrib',
],
'classmap' => [
'Classes',
'Legacy',
],
],
];