mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-14 03:16:10 +01:00
58201ce398
- 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.
20 lines
494 B
PHP
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' => [],
|
|
],
|
|
];
|