search_core/ext_emconf.php

25 lines
604 B
PHP
Raw Normal View History

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',
'constraints' => [
'depends' => [
'typo3' => '7.6.0-7.6.99',
'php' => '5.6.0-7.99.99'
2016-12-01 17:17:10 +01:00
],
'conflicts' => [],
],
'autoload' => [
'psr-4' => [
'Codappix\\SearchCore\\' => 'Classes',
2016-12-01 17:17:10 +01:00
],
],
'state' => 'alpha',
'clearCacheOnLoad' => 1,
'author' => 'Daniel Siepmann',
'author_email' => 'coding@daniel-siepmann.de',
2016-12-01 17:17:10 +01:00
'version' => '1.0.0',
];