mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2025-01-09 04:46:11 +01:00
tea/ext_emconf.php
Oliver Klee 5260d3d939
[TASK] Raise the minimum required bugfix version for TYPO3 (#1540)
This paves the way towards support for PHP 8.4.

Also, the newer version fixes a bug that affects functional tests
for the single view in #1419.
2025-01-04 14:03:18 +01:00

31 lines
929 B
PHP

<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Tea example',
'description' => 'Example extension for unit testing and best practices',
'version' => '3.1.0',
'category' => 'example',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.3.99',
'typo3' => '11.5.41-12.4.99',
'extbase' => '11.5.41-12.4.99',
'fluid' => '11.5.41-12.4.99',
'frontend' => '11.5.41-12.4.99',
],
],
'state' => 'stable',
'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/',
],
],
];