-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
33 lines (31 loc) · 963 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
26
27
28
29
30
31
32
33
<?php
/*
* This file is part of the package thucke/timezones.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Timezones',
'description' => 'Manages timezones and datetime conversion in your website',
'category' => 'plugin',
'version' => '3.1.0',
'state' => 'stable',
'uploadfolder' => false,
'createDirs' => '',
'clearcacheonload' => true,
'author' => 'Thomas Hucke',
'author_email' => '[email protected]',
'author_company' => '',
'constraints' => [
'depends' => [
'php' => '7.3.0-8.1.99',
'typo3' => '9.5.0-11.5.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'Thucke\\Timezones\\' => 'Classes', ], ],
];