From 792f665524f33f3cbf70529129495d6c477e1bb6 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Mon, 5 Nov 2018 23:31:59 +0100 Subject: [PATCH] [CLEANUP] Streamline ext_emconf.php (#37) --- CHANGELOG.md | 1 + ext_emconf.php | 12 +++++++----- 2 files changed, 8 insertions(+), 5 deletions(-) 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/',