mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:16:13 +01:00
122f61fe13
This change raises the minimum versions for TYPO3 core packages up to 11.5.4 as minimum version, which contains needed fixes directly or through raised core package dependencies to avoid corresponding php deprecation and return type hint issues with symfony/routing during composer minimum tests with PHP8.1. Beside this, we need at least this version as core ships with QueryBuilder forward combat methods `executeQuery()` and `executeStatement()` only since this version. See: https://review.typo3.org/c/Packages/TYPO3.CMS/+/72430 Fixes #635
33 lines
883 B
PHP
33 lines
883 B
PHP
<?php
|
|
|
|
$EM_CONF[$_EXTKEY] = [
|
|
'title' => 'Tea example',
|
|
'description' => 'Example extension for unit testing and best practices',
|
|
'version' => '2.0.1',
|
|
'category' => 'example',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'php' => '7.4.0-8.1.99',
|
|
'typo3' => '11.5.4-11.5.99',
|
|
'extbase' => '11.5.4-11.5.99',
|
|
'fluid' => '11.5.4-11.5.99',
|
|
'frontend' => '11.5.4-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/',
|
|
],
|
|
],
|
|
];
|