mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-13 02:16:10 +01:00
20 lines
487 B
PHP
20 lines
487 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
$EM_CONF['events'] = [
|
|
'title' => 'Events',
|
|
'description' => 'Extension to manage events',
|
|
'category' => 'plugin',
|
|
'author' => 'Dirk Koritnik, Daniel Siepmann',
|
|
'author_email' => 'koritnik@werkraum-media.de, coding@daniel-siepmann.de',
|
|
'state' => 'stable',
|
|
'version' => '4.0.0',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '',
|
|
],
|
|
'conflicts' => [],
|
|
'suggests' => [],
|
|
],
|
|
];
|