mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 17:56:12 +02:00
tea/ext_emconf.php

28 lines
709 B
PHP
Raw Normal View History

<?php
2016-05-07 21:56:27 +02:00
$EM_CONF[$_EXTKEY] = [
2016-05-07 21:43:25 +02:00
'title' => 'Tea example',
'description' => 'Example extension for unit testing and best practices',
'category' => 'example',
2016-05-07 21:43:25 +02:00
'author' => 'Oliver Klee',
'author_email' => 'typo3-coding@oliverklee.de',
'author_company' => 'oliverklee.de',
'state' => 'stable',
'version' => '2.0.x-dev',
2016-05-07 21:56:27 +02:00
'constraints' => [
'depends' => [
'php' => '7.0.0-7.2.99',
2017-04-24 17:43:59 +02:00
'typo3' => '7.6.0-8.7.99',
2016-05-07 21:56:27 +02:00
],
],
'autoload' => [
'psr-4' => [
'OliverKlee\\Tea\\' => 'Classes/',
],
],
'autoload-dev' => [
'psr-4' => [
'OliverKlee\\Tea\\Tests\\' => 'Tests/',
],
],
2016-05-07 21:56:27 +02:00
];