mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 01:56:12 +02:00
tea/ext_emconf.php
Oliver Klee 821cb8400b
[BUGFIX] Have all extension dependencies in the ext_emconf.php as well (#515)
For non-Composer installations, all extension dependencies that are in
the `composer.json` should also be in the `ext_emconf.php`.

Even for extensions that are always installed (like frontend or fluid),
it is good practice to always make these dependencies explicit.
2022-08-24 18:43:54 +02:00

33 lines
883 B
PHP

<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Tea example',
'description' => 'Example extension for unit testing and best practices',
'version' => '2.0.0',
'category' => 'example',
'constraints' => [
'depends' => [
'php' => '7.2.0-8.1.99',
'typo3' => '10.4.0-11.5.99',
'extbase' => '10.4.6-11.5.99',
'fluid' => '10.4.0-11.5.99',
'frontend' => '10.4.0-11.5.99',
],
],
'state' => 'stable',
'uploadfolder' => false,
'createDirs' => '',
'author' => 'Oliver Klee',
'author_email' => 'typo3-coding@oliverklee.de',
'author_company' => 'TYPO3 Trainer Network',
'autoload' => [
'psr-4' => [
'TTN\\Tea\\' => 'Classes/',
],
],
'autoload-dev' => [
'psr-4' => [
'TTN\\Tea\\Tests\\' => 'Tests/',
],
],
];