-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathext_emconf.php
More file actions
31 lines (30 loc) · 929 Bytes
/
ext_emconf.php
File metadata and controls
31 lines (30 loc) · 929 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
30
31
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Tea example',
'description' => 'Example extension for unit testing and best practices',
'version' => '4.0.0',
'category' => 'example',
'constraints' => [
'depends' => [
'php' => '8.1.0-8.5.99',
'typo3' => '12.4.41-13.4.99',
'extbase' => '12.4.41-13.4.99',
'fluid' => '12.4.41-13.4.99',
'frontend' => '12.4.41-13.4.99',
],
],
'state' => 'stable',
'author' => 'Oliver Klee, Daniel Siepmann, Łukasz Uznański',
'author_email' => 'typo3-coding@oliverklee.de, coding@daniel-siepmann.de, lukaszuznanski94@gmail.com',
'author_company' => 'TYPO3 Best Practices Team',
'autoload' => [
'psr-4' => [
'TTN\\Tea\\' => 'Classes/',
],
],
'autoload-dev' => [
'psr-4' => [
'TTN\\Tea\\Tests\\' => 'Tests/',
],
],
];