mirror of
https://github.com/werkraum-media/events.git
synced 2025-04-12 03:23:47 +02:00
TYPO3 changed how models are instantiated and prepared. We now adopt the code to still initialize the data processing. Furthermore, the feature is now covered with a test. Relates: #11596
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' => '5.0.1',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '',
|
|
],
|
|
'conflicts' => [],
|
|
'suggests' => [],
|
|
],
|
|
];
|