mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 12:56:12 +01:00
99277a3cb4
Also remove the dependency on the phpunit extension.
17 lines
488 B
PHP
17 lines
488 B
PHP
<?php
|
|
$EM_CONF[$_EXTKEY] = [
|
|
'title' => 'Tea example',
|
|
'description' => 'Example extension for unit testing and best practices',
|
|
'category' => 'example',
|
|
'author' => 'Oliver Klee',
|
|
'author_email' => 'typo3-coding@oliverklee.de',
|
|
'author_company' => 'oliverklee.de',
|
|
'state' => 'stable',
|
|
'version' => '2.0.x-dev',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'php' => '7.0.0-7.2.99',
|
|
'typo3' => '7.6.0-8.7.99',
|
|
],
|
|
],
|
|
];
|