mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 17:56:12 +02:00

[TASK] Add autoloading to ext_emconf.php

This commit is contained in:
Oliver Klee 2018-01-12 23:28:58 +01:00
parent fa5740c3cc
commit a848f40d2a

View file

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