-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathext_emconf.php
37 lines (36 loc) · 1.13 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
31
32
33
34
35
36
37
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Seminar Manager',
'description' => 'Allows you to create and manage a list of seminars, workshops, lectures, theater performances and other events, allowing front-end users to sign up. FE users also can create and edit events.',
'version' => '5.7.0',
'category' => 'plugin',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.4.99',
'typo3' => '11.5.41-11.5.99',
'extbase' => '11.5.41-11.5.99',
'feuserextrafields' => '6.4.0-6.99.99',
'oelib' => '6.1.1-6.99.99',
'static_info_tables' => '11.5.5-12.4.99',
],
'conflicts' => [
],
'suggests' => [
'onetimeaccount' => '',
],
],
'state' => 'stable',
'author' => 'Oliver Klee',
'author_email' => '[email protected]',
'author_company' => 'oliverklee.de',
'autoload' => [
'psr-4' => [
'OliverKlee\\Seminars\\' => 'Classes/',
],
],
'autoload-dev' => [
'psr-4' => [
'OliverKlee\\Seminars\\Tests\\' => 'Tests/',
],
],
];