forked from TYPO3BestPractices/tea
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
29 lines (29 loc) · 758 Bytes
/
ext_emconf.php
File metadata and controls
29 lines (29 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Tea example',
'description' => 'Example extension for unit testing and best practices',
'version' => '2.0.x-dev',
'category' => 'example',
'constraints' => [
'depends' => [
'php' => '7.2.0-7.4.99',
'typo3' => '9.5.0-10.99.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/',
],
],
];