mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 00:36:14 +02:00
tea/ext_emconf.php
Oliver Klee 09bc229066
[TASK] Add Daniel and Łukasz as co-maintainers (#960)
Also change Oliver Klee from "developer" to "maintainer" (which better
describes the role).

Also change the author company to the Best Practices Team, as this is
the team that currently is maintaing the extension, and the TYPO3 Trainer
Network has been disbanded.
2023-11-01 23:33:14 +01:00

33 lines
978 B
PHP

<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Tea example',
'description' => 'Example extension for unit testing and best practices',
'version' => '3.0.0',
'category' => 'example',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.3.99',
'typo3' => '11.5.4-12.4.99',
'extbase' => '11.5.4-12.4.99',
'fluid' => '11.5.4-12.4.99',
'frontend' => '11.5.4-12.4.99',
],
],
'state' => 'stable',
'uploadfolder' => false,
'createDirs' => '',
'author' => 'Oliver Klee, Daniel Siepmann, Łukasz Uznański',
'author_email' => 'typo3-coding@oliverklee.de, coding@daniel-siepmann.de, lukaszuznanski94@gmail.com',
'author_company' => 'TYPO3 Best Practices Team',
'autoload' => [
'psr-4' => [
'TTN\\Tea\\' => 'Classes/',
],
],
'autoload-dev' => [
'psr-4' => [
'TTN\\Tea\\Tests\\' => 'Tests/',
],
],
];