events/ext_emconf.php
Daniel Siepmann (Codappix) d1f8b253e4 Support destination.one repeatCount property
This provides info on how often a repeatable event should be repeated.
E.g. `1` = exactly once, so no actual repeat.

Relates: #11666
2025-02-11 14:28:39 +01:00

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.1.0',
'constraints' => [
'depends' => [
'typo3' => '',
],
'conflicts' => [],
'suggests' => [],
],
];