mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2025-02-17 00:43:50 +01:00
![Oliver Klee](/assets/img/avatar_default.png)
As it is not possible to install system extensions in different versions (e.g., extbase 10.4.7 together with fluid 10.4.11), we should require the same versios for all system extensions for consistency.
33 lines
887 B
PHP
33 lines
887 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.11-11.5.99',
|
|
'extbase' => '10.4.11-11.5.99',
|
|
'fluid' => '10.4.11-11.5.99',
|
|
'frontend' => '10.4.11-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/',
|
|
],
|
|
],
|
|
];
|