-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
57 lines (55 loc) · 1.8 KB
/
Copy pathext_emconf.php
File metadata and controls
57 lines (55 loc) · 1.8 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
56
57
<?php
/*
* This file is part of the "GS Warranty" 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 Warranty',
'description' => 'GS Warranty adapts the TYPO3 backend logos and warranty data and registers a new toolbar item. Feel free to use this extension as base for your own work.',
'version' => '9.0.3',
'category' => 'be',
'constraints' => [
'depends' => [
'php' => '7.1.99-7.3.99',
'typo3' => '8.7.0-9.5.99',
'gslib' => '0.0.9-0.0.0',
],
'conflicts' => [],
'suggests' => [
'bootstrap_package' => '9.0.0-0.0.0',
],
],
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'author' => 'Simon Gilli',
'author_email' => 'typo3@gilbertsoft.org',
'author_company' => 'Gilbertsoft',
'autoload' => [
'psr-4' => [
'Gilbertsoft\\Warranty\\' => 'Classes',
],
],
'autoload-dev' => [
'psr-4' => [
'Gilbertsoft\\Warranty\\Tests\\' => 'Tests',
],
],
];