calendar/ext_emconf.php
Daniel Siepmann (Codappix) 33eb0a2a3b
Adopt functional tests for latest TYPO3. (#10)
TYPO3 now would return a 404 if cHash doesn't match. We now exclude the
parameters within our functional tests to not run into this issue.
2024-09-16 12:25:10 +02:00

21 lines
526 B
PHP

<?php
$EM_CONF['calendar'] = [
'title' => 'Calendar',
'description' => 'API for extensions to create calendar',
'category' => 'misc',
'author' => 'Daniel Siepmann',
'author_email' => 'coding@daniel-siepmann.de',
'author_company' => 'Codappix GmbH',
'state' => 'alpha',
'uploadfolder' => 0,
'clearCacheOnLoad' => 0,
'version' => '1.1.1',
'constraints' => [
'depends' => [
'typo3' => '*',
],
'conflicts' => [],
'suggests' => [],
],
];