forked from lochmueller/calendarize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
29 lines (29 loc) · 1.23 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
<?php
/**
* $EM_CONF
*
* @author Tim Lochmüller
*/
$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' => '3.1.1',
'state' => 'stable',
'clearcacheonload' => 1,
'author' => 'Tim Lochmüller',
'author_email' => '[email protected]',
'constraints' => [
'depends' => [
'typo3' => '7.6.0-8.99.99',
'php' => '7.0.0-0.0.0',
'autoloader' => '2.0.0-0.0.0',
],
],
'autoload' => [
'psr-4' => [
'HDNET\\Calendarize\\' => 'Classes/',
'JMBTechnologyLimited\\ICalDissect\\' => 'Resources/Private/Php/ICalDissect/src/JMBTechnologyLimited/ICalDissect/',
],
],
];