forked from TYPO3-Solr/ext-solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
28 lines (27 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
28
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Apache Solr for TYPO3 - Enterprise Search',
'description' => 'Apache Solr for TYPO3 is the enterprise search server you were looking for with special features such as Faceted Search or Synonym Support and incredibly fast response times of results within milliseconds.',
'version' => '12.0.1',
'state' => 'stable',
'category' => 'plugin',
'author' => 'Ingo Renner, Timo Hund, Markus Friedrich',
'author_email' => '[email protected]',
'author_company' => 'dkd Internet Service GmbH',
'constraints' => [
'depends' => [
'scheduler' => '',
'typo3' => '12.4.3-12.4.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'classmap' => [
'Resources/Private/Php/',
],
'psr-4' => [
'ApacheSolrForTypo3\\Solr\\' => 'Classes/',
],
],
];