mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-11 03:16:12 +01:00
24 lines
603 B
PHP
24 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' => '8.7.0-8.7.99',
|
|
'php' => '7.1.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',
|
|
];
|