2016-12-01 17:17:10 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$EM_CONF[$_EXTKEY] = [
|
|
|
|
'title' => 'Search Core',
|
|
|
|
'description' => 'Search core for implementing various search types.',
|
|
|
|
'category' => 'be',
|
2017-07-06 16:17:30 +02:00
|
|
|
'clearCacheOnLoad' => 1,
|
2016-12-01 17:17:10 +01:00
|
|
|
'constraints' => [
|
|
|
|
'depends' => [
|
2018-03-13 11:28:40 +01:00
|
|
|
'typo3' => '7.6.0-8.7.99',
|
|
|
|
'php' => '7.0.0-7.2.99'
|
2016-12-01 17:17:10 +01:00
|
|
|
],
|
|
|
|
'conflicts' => [],
|
|
|
|
],
|
|
|
|
'autoload' => [
|
|
|
|
'psr-4' => [
|
2017-07-06 23:48:47 +02:00
|
|
|
'Codappix\\SearchCore\\' => 'Classes',
|
2016-12-01 17:17:10 +01:00
|
|
|
],
|
|
|
|
],
|
2017-07-06 16:17:30 +02:00
|
|
|
'state' => 'beta',
|
2018-03-13 11:28:40 +01:00
|
|
|
'version' => '0.0.1',
|
2017-06-06 11:45:23 +02:00
|
|
|
'author' => 'Daniel Siepmann',
|
|
|
|
'author_email' => 'coding@daniel-siepmann.de',
|
2016-12-01 17:17:10 +01:00
|
|
|
];
|