-
-
Notifications
You must be signed in to change notification settings - Fork 250
/
ext_emconf.php
28 lines (27 loc) · 927 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' => '13.0.0-alpha-1',
'state' => 'alpha',
'category' => 'plugin',
'author' => 'Rafael Kaehm, Markus Friedrich',
'author_email' => '[email protected]',
'author_company' => 'dkd Internet Service GmbH',
'constraints' => [
'depends' => [
'scheduler' => '',
'typo3' => '13.1.0-13.4.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'classmap' => [
'Resources/Private/Php/',
],
'psr-4' => [
'ApacheSolrForTypo3\\Solr\\' => 'Classes/',
],
],
];