mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-22 06:26:09 +01:00
c1c6951e3f
In order to distinguish between v10-dev / dev-master, and 9.5, all dependencies are updated to v10.0.0-dev. For ext_emconf.php the fixed version 10.0.0 is used as in all other branches. Resolves: #87159 Releases: master Change-Id: Ie1f135663527f8c7d1654e085b874d699b677529 Reviewed-on: https://review.typo3.org/59150 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by: Benni Mack <benni@typo3.org> Tested-by: Benni Mack <benni@typo3.org>
21 lines
503 B
PHP
21 lines
503 B
PHP
<?php
|
|
$EM_CONF[$_EXTKEY] = [
|
|
'title' => 'Frontend Editing',
|
|
'description' => '',
|
|
'category' => 'fe',
|
|
'author' => 'TYPO3 Core Team',
|
|
'author_email' => 'typo3cms@typo3.org',
|
|
'author_company' => '',
|
|
'state' => 'stable',
|
|
'uploadfolder' => 0,
|
|
'createDirs' => '',
|
|
'clearCacheOnLoad' => 0,
|
|
'version' => '10.0.0',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '10.0.0',
|
|
],
|
|
'conflicts' => [],
|
|
'suggests' => [],
|
|
],
|
|
];
|