forked from tpwd/ke_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
27 lines (26 loc) · 933 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
<?php
/** @noinspection PhpUndefinedVariableInspection */
$EM_CONF[$_EXTKEY] = [
'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',
'version' => '5.0.2',
'state' => 'stable',
'author' => 'ke_search Dev Team',
'author_email' => '[email protected]',
'author_company' => 'TPWD AG',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.9.99',
'typo3' => '11.5.11-12.99.99',
],
'conflicts' => [],
'suggests' => [
'dashboard' => '11.5.11-12.99.99',
],
],
'autoload' => [
'psr-4' => ['Tpwd\\KeSearch\\' => 'Classes'],
'classmap' => ['Classes'],
],
];