forked from TYPO3GmbH/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
29 lines (27 loc) · 846 Bytes
/
ext_emconf.php
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
/*
* 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' => 'This blog extension uses TYPO3s core concepts and elements to provide a full-blown blog that users of TYPO3 can instantly understand and use.',
'category' => 'fe',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'author' => 'TYPO3 GmbH',
'author_email' => '[email protected]',
'version' => '10.0.0-dev',
'constraints' => [
'depends' => [
'typo3' => '9.5.5-10.4.99',
'form' => '9.5.5-10.4.99',
],
'conflicts' => [],
'suggests' => [],
],
];