forked from TYPO3-Solr/ext-solrfluidgrouping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
26 lines (25 loc) · 812 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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Apache Solr for TYPO3 - Grouping for fluid rendering',
'description' => 'This addon provides the grouping for the fluid templating',
'version' => '11.0.0',
'state' => 'stable',
'category' => 'plugin',
'author' => 'Timo Hund, Frans Saris',
'author_email' => 'solr-eb-support@dkd.de',
'author_company' => 'dkd Internet Service GmbH',
'clearCacheOnLoad' => 0,
'constraints' => [
'depends' => [
'solr' => '11.5.0-11.5.99',
'typo3' => '11.5.4-11.5.99',
],
'conflicts' => [],
],
'autoload' => [
'psr-4' => [
'ApacheSolrForTypo3\\Solrfluidgrouping\\' => 'Classes/',
'ApacheSolrForTypo3\\Solrfluidgrouping\\Tests\\' => 'Tests/',
],
],
];