feedit/ext_emconf.php
Alexander Nitsche 58201ce398 [TASK] Align with new TYPO3 documentation standards
- align README.md
- align ext_emconf.php, composer.json
- add Settings.cfg, Index.rst, Includes.rst.txt
- add .editorconfig, .gitignore

See https://docs.typo3.org/m/typo3/docs-how-to-document/main/en-us/GeneralConventions/FileStructure.html for further details.
2022-04-05 12:46:08 +02:00

20 lines
494 B
PHP

<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Basic Frontend Editing',
'description' => '',
'category' => 'fe',
'author' => 'Friends of TYPO3',
'author_email' => 'friendsof@typo3.org',
'author_company' => '',
'state' => 'stable',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '10.0.2',
'constraints' => [
'depends' => [
'typo3' => '10.0.0-10.9.99',
],
'conflicts' => [],
'suggests' => [],
],
];