mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-11 03:16:12 +01:00
24 lines
605 B
PHP
24 lines
605 B
PHP
<?php
|
|
|
|
$EM_CONF[$_EXTKEY] = [
|
|
'title' => 'Search Core',
|
|
'description' => 'Search core for implementing various search types.',
|
|
'category' => 'be',
|
|
'constraints' => [
|
|
'depends' => [
|
|
'typo3' => '6.2.0-8.99.99',
|
|
'php' => '5.6.0-7.99.99'
|
|
],
|
|
'conflicts' => [],
|
|
],
|
|
'autoload' => [
|
|
'psr-4' => [
|
|
'Leonmrni\\SearchCore\\' => 'Classes',
|
|
],
|
|
],
|
|
'state' => 'alpha',
|
|
'clearCacheOnLoad' => 1,
|
|
'author' => 'Justus Leon Moroni',
|
|
'author_email' => 'developer@leonmrni.com',
|
|
'version' => '1.0.0',
|
|
];
|