forked from TYPO3GmbH/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
29 lines (26 loc) · 751 Bytes
/
Copy pathext_emconf.php
File metadata and controls
29 lines (26 loc) · 751 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
29
<?php
declare(strict_types=1);
/*
* This file is part of the package t3g/blog.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'TYPO3 Blog Extension',
'description' => 'A blog for TYPO3 built on core concepts and content elements.',
'category' => 'fe',
'state' => 'stable',
'author' => 'TYPO3 GmbH',
'author_email' => 'info@typo3.com',
'version' => '15.0.3',
'constraints' => [
'depends' => [
'php' => '8.2.0-8.4.99',
'typo3' => '14.3.6-14.99.99',
'form' => '14.3.6-14.99.99',
],
'conflicts' => [],
'suggests' => [],
],
];