-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathext_emconf.php
More file actions
28 lines (26 loc) · 806 Bytes
/
ext_emconf.php
File metadata and controls
28 lines (26 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/*
* This file is part of the "xima_typo3_frontend_edit" TYPO3 CMS extension.
*
* (c) 2024-2025 Konrad Michalik <hej@konradmichalik.dev>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Frontend Edit',
'description' => 'This extension provides an edit button for editors within frontend content elements.',
'category' => 'module',
'author' => 'Konrad Michalik',
'author_email' => 'hej@konradmichalik.dev',
'state' => 'stable',
'version' => '2.2.2',
'constraints' => [
'depends' => [
'php' => '8.2.0-8.5.99',
'typo3' => '13.4.0-14.3.99',
],
'conflicts' => [],
'suggests' => [],
],
];