diff --git a/CHANGELOG.md b/CHANGELOG.md index e02a689..e9655b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/ext_emconf.php b/ext_emconf.php index 23ed2e9..c5d5da6 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -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/',