events/ext_emconf.php
Daniel Siepmann 15d233c834
Maintenance (#59)
* Add missing dependency to composer package `typo3/cms-install`.

As UpgradeWizards use API of the package.

* Migrate deprecated PHPStan configuration options

* Adapt expected HTML output within functional tests

As TYPO3 changed actual generated HTML.
2024-06-27 09:48:33 +02: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' => '4.0.1',
'constraints' => [
'depends' => [
'typo3' => '',
],
'conflicts' => [],
'suggests' => [],
],
];