events/Tests/Functional/Frontend/Fixtures/Extensions/example/ext_emconf.php
Daniel Siepmann 81065f5c67
BREAKING: TYPO3 v12 support (#44)
* Migrated all fixtures to PHP.
* Removed version specific adjustments.
2023-11-27 10:04:42 +01:00

19 lines
382 B
PHP

<?php
declare(strict_types=1);
$EM_CONF['example'] = [
'title' => 'Events Test',
'category' => 'plugin',
'description' => 'Example for tests',
'state' => 'alpha',
'version' => '1.0.0',
'constraints' => [
'depends' => [
'events' => '',
'typo3' => '',
],
'conflicts' => [],
'suggests' => [],
],
];