forked from TYPO3-Solr/ext-solrfluidexample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
35 lines (35 loc) · 1.08 KB
/
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
31
32
33
34
35
<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Apache Solr for TYPO3 - Fluid Frontend Customizing',
'description' => 'This extension shows, how to customize solrfluid with custom templates',
'version' => '2.0.0',
'state' => 'stable',
'category' => 'plugin',
'author' => 'Timo Hund, Markus Friedrich',
'author_email' => '[email protected]',
'author_company' => 'dkd Internet Service GmbH',
'module' => '',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'constraints' => array(
'depends' => array(
'scheduler' => '',
'solr' => '7.0.0-',
'extbase' => '7.6.0-8.0.99',
'fluid' => '7.6.0-8.0.99',
'typo3' => '7.6.0-8.0.99'
),
'conflicts' => array(),
'suggests' => array(
'devlog' => '',
),
),
'autoload' => array(
'psr-4' => array(
'ApacheSolrForTypo3\\Solrfluidexample\\' => 'Classes/',
'ApacheSolrForTypo3\\Solrfluidexample\\Tests\\' => 'Tests/'
)
)
);