mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-14 18:16:10 +01:00
19 lines
382 B
PHP
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' => [],
|
|
],
|
|
];
|