forked from TYPO3-Solr/ext-solrgrouping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
30 lines (30 loc) · 963 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
29
30
<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Apache Solr for TYPO3 - Result Grouping',
'description' => 'Solr Result Grouping allows grouping of documents sharing a common field. For each group the most relevant documents are returned.',
'version' => '1.3.0-dev',
'state' => 'stable',
'category' => 'plugin',
'author' => 'Ingo Renner',
'author_email' => '[email protected]',
'author_company' => 'dkd Internet Service GmbH',
'module' => '',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'constraints' => array(
'depends' => array(
'solr' => '5.0.0-',
'typo3' => '7.6.0-8.0.99',
),
'conflicts' => array(),
'suggests' => array(),
),
'autoload' => array(
'psr-4' => array(
'ApacheSolrForTypo3\\Solrgrouping\\' => 'Classes/'
)
),
'_md5_values_when_last_written' => ''
);