search_core/ext_emconf.php
Daniel Siepmann d26172b5cb
BUGFIX: Adjust emconf
* Fix TYPO3 Version constraint.
* Adjust author.
2017-06-06 11:45:23 +02:00

24 lines
604 B
PHP

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