-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
ext_emconf.php
30 lines (29 loc) · 1.17 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
<?php
/**
* $EM_CONF.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Calendarize - Event Management',
'description' => 'Create a structure for timely controlled tables (e.g. events) and one plugin for the different output of calendar views (list, detail, month, year, day, week...). The extension is shipped with one default event table, but you can also "calendarize" your own table/model. It is completely independent and configurable! Use your own models as event items in this calender. Development on https://github.com/lochmueller/calendarize',
'category' => 'fe',
'version' => '13.0.7',
'state' => 'stable',
'clearcacheonload' => 1,
'author' => 'Tim Lochmüller',
'author_email' => 'tim@fruit-lab.de',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-12.4.99',
'php' => '8.1.0-8.99.99',
],
'suggests' => [
'dashboard' => '12.4.0-12.4.99',
],
],
'autoload' => [
'psr-4' => [
'HDNET\\Calendarize\\' => 'Classes/',
'JMBTechnologyLimited\\ICalDissect\\' => 'Resources/Private/Php/ICalDissect/src/JMBTechnologyLimited/ICalDissect/',
],
],
];