forked from teaminmedias-pluswerk/ke_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
36 lines (36 loc) · 1.27 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
<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Faceted Search',
'description' => 'Faceted fulltext search for TYPO3. Fast, flexible and easy to use. Very easy to install. Fast (tested with over 200.000 records) and flexible (you can write your own indexers). Indexes content directly from the databases. Visit kesearch.de for further information and documentation.',
'category' => 'plugin',
'shy' => 0,
'version' => '2.5.0',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearcacheonload' => 0,
'lockType' => '',
'author' => 'Christian Buelter (team.inmedias)',
'author_email' => '[email protected]',
'author_company' => 'team.inmedias',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'constraints' => array(
'depends' => array(
'typo3' => '7.6.0-8.7.99',
),
'conflicts' => array(),
'suggests' => array(),
),
'suggests' => array(),
'autoload' => array(
'psr-4' => array('TeaminmediasPluswerk\\KeSearch\\' => 'Classes'),
'classmap' => array('Classes', 'cli', 'pi1', 'pi2', 'pi3'),
),
);