From a848f40d2a9c0c116871e8aed5506b3ff1858fd5 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 12 Jan 2018 23:28:58 +0100 Subject: [PATCH] [TASK] Add autoloading to ext_emconf.php --- ext_emconf.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ext_emconf.php b/ext_emconf.php index cd5512b..23ed2e9 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -14,4 +14,14 @@ $EM_CONF[$_EXTKEY] = [ 'typo3' => '7.6.0-8.7.99', ], ], + 'autoload' => [ + 'psr-4' => [ + 'OliverKlee\\Tea\\' => 'Classes/', + ], + ], + 'autoload-dev' => [ + 'psr-4' => [ + 'OliverKlee\\Tea\\Tests\\' => 'Tests/', + ], + ], ];