mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
[CLEANUP] Streamline ext_emconf.php (#37)
This commit is contained in:
parent
adf0b308a1
commit
792f665524
2 changed files with 8 additions and 5 deletions
|
@ -10,6 +10,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
- Composer script for PHP linting
|
||||
|
||||
### Changed
|
||||
- Streamline ext_emconf.php (#37)
|
||||
|
||||
### Deprecated
|
||||
|
||||
|
|
|
@ -2,18 +2,20 @@
|
|||
$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',
|
||||
'category' => 'example',
|
||||
'constraints' => [
|
||||
'depends' => [
|
||||
'php' => '7.0.0-7.2.99',
|
||||
'typo3' => '7.6.0-8.7.99',
|
||||
],
|
||||
],
|
||||
'state' => 'stable',
|
||||
'uploadfolder' => false,
|
||||
'createDirs' => '',
|
||||
'author' => 'Oliver Klee',
|
||||
'author_email' => 'typo3-coding@oliverklee.de',
|
||||
'author_company' => 'oliverklee.de',
|
||||
'autoload' => [
|
||||
'psr-4' => [
|
||||
'OliverKlee\\Tea\\' => 'Classes/',
|
||||
|
|
Loading…
Reference in a new issue