mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00

[CLEANUP] Streamline ext_emconf.php (#37)

This commit is contained in:
Oliver Klee 2018-11-05 23:31:59 +01:00 committed by GitHub
parent adf0b308a1
commit 792f665524
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 5 deletions

View file

@ -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

View file

@ -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/',