forked from jocrau/contagged
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_emconf.php
32 lines (31 loc) · 1000 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
30
31
32
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Content parser and tagger (Glossar)]',
'description' => 'This extension parses your content to tag, replace and link specific terms. It is useful to auto-generate a glossary - but not only. See \'ChangeLog\' and WiKi (\'http://wiki.typo3.org/index.php/Contagged\').',
'category' => 'fe',
'shy' => 0,
'version' => '1.9.0-dev',
'state' => 'stable',
'uploadfolder' => 1,
'createDirs' => 'uploads/tx_contagged/rte/',
'modify_tables' => 'tt_content,pages',
'clearcacheonload' => 0,
'author' => 'Jochen Rau',
'author_email' => 'jochen.rau@typoplanet.de',
'author_company' => 'typoplanet',
'constraints' => [
'depends' => [
'typo3' => '8.7.0-9.5.99',
],
],
'autoload' => [
'psr-4' => [
'Ppi\\Contagged\\' => 'Classes',
],
'classmap' => [
'model',
'pi1',
'class.tx_contagged.php',
],
],
];