forked from teaminmedias-pluswerk/ke_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
37 lines (37 loc) · 1.23 KB
/
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
33
34
35
36
37
<?php
/** @noinspection PhpUndefinedVariableInspection */
$EM_CONF[$_EXTKEY] = array(
'title' => 'Faceted Search',
'description' => 'Faceted fulltext search for TYPO3. Fast, flexible and easy to install and use. Indexes content directly from the databases. Features faceting / filtering, file indexing, images in result lists and respects access restrictions.',
'category' => 'plugin',
'shy' => 0,
'version' => '3.2.0',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearcacheonload' => 0,
'lockType' => '',
'author' => 'ke_search Dev Team',
'author_email' => 'christian.buelter@web.de',
'author_company' => 'The People Who Do TPWD GmbH',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'constraints' => array(
'depends' => array(
'typo3' => '9.5.0-10.4.99'
),
'conflicts' => array(),
'suggests' => array(),
),
'suggests' => array(),
'autoload' => array(
'psr-4' => array('TeaminmediasPluswerk\\KeSearch\\' => 'Classes'),
'classmap' => array('Classes'),
),
);