mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 00:56:10 +01:00
Daniel Siepmann
3d98475a6c
The existing code didn't work with the provided data. We added a new test case to cover the situation. We adjusted the existing code to check on the actual rel value instead of the keys.
20 lines
484 B
PHP
20 lines
484 B
PHP
<?php
|
|
|
|
$EM_CONF['events'] = [
|
|
'title' => 'Events',
|
|
'description' => 'Extension to manage events',
|
|
'category' => 'plugin',
|
|
'author' => 'Dirk Koritnik',
|
|
'author_email' => 'koritnik@werkraum-media.de',
|
|
'state' => 'alpha',
|
|
'createDirs' => '',
|
|
'clearCacheOnLoad' => 0,
|
|
'version' => '2.4.2',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '10.4.00-11.5.99',
|
|
],
|
|
'conflicts' => [],
|
|
'suggests' => [],
|
|
],
|
|
];
|