forked from lochmueller/calendarize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
28 lines (27 loc) · 1.13 KB
/
ext_emconf.php
File metadata and controls
28 lines (27 loc) · 1.13 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
<?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' => '8.2.0',
'state' => 'stable',
'clearcacheonload' => 1,
'author' => 'Tim Lochmüller',
'author_email' => 'tim@fruit-lab.de',
'constraints' => [
'depends' => [
'typo3' => '10.4.12-10.4.99',
'php' => '7.2.0-7.4.99',
'autoloader' => '7.1.0-7.99.99',
],
],
'autoload' => [
'psr-4' => [
'HDNET\\Calendarize\\' => 'Classes/',
'JMBTechnologyLimited\\ICalDissect\\' => 'Resources/Private/Php/ICalDissect/src/JMBTechnologyLimited/ICalDissect/',
],
],
];