✨ 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:
parent
d3fd5af56f
commit
66d724e99a
13 changed files with 25 additions and 1 deletions
0
Classes/Controller/.gitkeep
Normal file
0
Classes/Controller/.gitkeep
Normal file
0
Classes/Domain/Model/.gitkeep
Normal file
0
Classes/Domain/Model/.gitkeep
Normal file
0
Classes/Domain/Repository/.gitkeep
Normal file
0
Classes/Domain/Repository/.gitkeep
Normal file
0
Configuration/TCA/.gitkeep
Normal file
0
Configuration/TCA/.gitkeep
Normal file
|
@ -3,7 +3,7 @@
|
|||
|
||||
[[https://ddev.readthedocs.io/][DDEV-Local]] is a tool for setting up local PHP development environments within few minutes using Docker. It includes specific support for various PHP platforms including [[https://typo3.org][TYPO3]].
|
||||
|
||||
While it is quite simple to use, it requires a little bit of initial setup for new or existing projects. This boilerplate repository contains an example configuration for a DDEV-Local TYPO3 setup. As with everything else there is more than one way to do it and of course you do not need to follow this configuration (exactly). Please be aware that this repository *only* includes the configuration for DDEV but *not* the boilerplate for a TYPO3 extension. It is necessary to add the therefore required configuration yourself. So this repository may be more used as a reference point then as a clone-and-start-coding setup.
|
||||
While it is quite simple to use, it requires a little bit of initial setup for new or existing projects. This boilerplate repository contains an example configuration for a DDEV-Local TYPO3 setup. As with everything else there is more than one way to do it and of course you do not need to follow this configuration (exactly). Please be aware that this repository *only* includes a very basic boilerplate for a TYPO3 extension. It is perhaps necessary to add some configuration yourself.
|
||||
|
||||
* How to use it
|
||||
|
||||
|
|
0
Resources/Private/Language/.gitkeep
Normal file
0
Resources/Private/Language/.gitkeep
Normal file
0
Resources/Private/Layouts/.gitkeep
Normal file
0
Resources/Private/Layouts/.gitkeep
Normal file
0
Resources/Private/Partials/.gitkeep
Normal file
0
Resources/Private/Partials/.gitkeep
Normal file
0
Resources/Private/Templates/.gitkeep
Normal file
0
Resources/Private/Templates/.gitkeep
Normal file
0
Resources/Public/Css/.gitkeep
Normal file
0
Resources/Public/Css/.gitkeep
Normal file
0
Resources/Public/Icons/.gitkeep
Normal file
0
Resources/Public/Icons/.gitkeep
Normal file
0
Resources/Public/Js/.gitkeep
Normal file
0
Resources/Public/Js/.gitkeep
Normal file
24
ext_emconf.php
Normal file
24
ext_emconf.php
Normal 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'
|
||||
]
|
||||
],
|
||||
];
|
Reference in a new issue