forked from TYPO3-Solr/ext-solr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
31 lines (31 loc) · 1.03 KB
/
ext_emconf.php
File metadata and controls
31 lines (31 loc) · 1.03 KB
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
<?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' => '10.0.0-dev',
'state' => 'stable',
'category' => 'plugin',
'author' => 'Ingo Renner, Timo Hund, Markus Friedrich',
'author_email' => 'ingo@typo3.org',
'author_company' => 'dkd Internet Service GmbH',
'clearCacheOnLoad' => 0,
'constraints' => [
'depends' => [
'scheduler' => '',
'typo3' => '9.5.0-'
],
'conflicts' => [],
'suggests' => [
'devlog' => '',
],
],
'autoload' => [
'classmap' => [
'Resources/Private/Php/'
],
'psr-4' => [
'ApacheSolrForTypo3\\Solr\\' => 'Classes/',
'ApacheSolrForTypo3\\Solr\\Tests\\' => 'Tests/'
]
]
];