1
0
Fork 0

Add basic TYPO3 extension boilerplate

Basic directories and ext_emconf.php configuration. Everything else
seems to be not strictly necessary.

Closes #2
This commit is contained in:
Marcel Kapfer 2022-06-23 22:29:29 +02:00
parent d3fd5af56f
commit 66d724e99a
Signed by: mmk2410
GPG key ID: CADE6F0C09F21B09
13 changed files with 25 additions and 1 deletions

24
ext_emconf.php Normal file
View file

@ -0,0 +1,24 @@
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'TYPO3 DDEV-Local Boilerplate',
'description' => 'Boilerplate TYPO3-Extension for working with DDEV Local.',
'category' => 'example',
'author' => 'Marcel Kapfer'
'author_company' => '',
'author_email' => 'opensource@mmk2410.org',
'state' => 'test',
'clearCacheOnLoad' => true,
'version' => '11.0.0',
'constraints' => [
'depends' => [
'typo3' => '11.0.0-11.99.99',
]
],
'autoload' => [
'psr-4' => [
'MMK2410\\TYPO3DDEVLocalBoilerplate\\' => 'Classes'
]
],
];