-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
55 lines (53 loc) · 2.1 KB
/
ext_emconf.php
File metadata and controls
55 lines (53 loc) · 2.1 KB
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
47
48
49
50
51
52
53
54
55
<?php
/*
* This file is part of the "GS Protected Config" Extension for TYPO3 CMS.
*
* Copyright (C) 2017-2019 by Gilbertsoft (gilbertsoft.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For the full license information, please read the LICENSE file that
* was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'GS Protected Config',
'description' => 'GS Protected Config allows you to import configurations from outside the web directory or override it dependent from the application context or TYPO3 mode (FE, BE, CLI, AJAX and INSTALL). You can use this extension to move the website from dev to testing to production without changing something inside the web root if you place your settings outside. Templates can be found in Resources/Private/Templates. Configuration can simply be adapted by the Extension Manager and must be activated first!',
'version' => '4.0.0',
'category' => 'misc',
'constraints' => [
'depends' => [
'php' => '7.1.99-7.2.99',
'typo3' => '8.7.0-9.5.99',
'gslib' => '0.0.9-0.0.0',
],
'conflicts' => [],
'suggests' => [],
],
'state' => 'beta',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'author' => 'Simon Gilli',
'author_email' => 'typo3@gilbertsoft.org',
'author_company' => 'Gilbertsoft',
'autoload' => [
'psr-4' => [
'Gilbertsoft\\ProtectedConfig\\' => 'Classes'
]
],
'autoload-dev' => [
'psr-4' => [
'Gilbertsoft\\ProtectedConfig\\Tests\\' => 'Tests'
]
]
];