search_core/ext_emconf.php
Daniel Siepmann c58e13cdf6
TASK: Rename vendor
As we move it from private repo to codappix.
2017-07-06 23:48:47 +02:00

25 lines
603 B
PHP

<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Search Core',
'description' => 'Search core for implementing various search types.',
'category' => 'be',
'clearCacheOnLoad' => 1,
'constraints' => [
'depends' => [
'typo3' => '7.6.0-7.6.99',
'php' => '5.6.0-7.99.99'
],
'conflicts' => [],
],
'autoload' => [
'psr-4' => [
'Codappix\\SearchCore\\' => 'Classes',
],
],
'state' => 'beta',
'version' => '1.0.0',
'author' => 'Daniel Siepmann',
'author_email' => 'coding@daniel-siepmann.de',
];