mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 01:16:10 +01:00
Daniel Siepmann
16bc22aa44
Check which version to run and switch TYPO3 bootstrapping. Also allow tests to run with TYPO3 CMS 7.6 again.
24 lines
602 B
PHP
24 lines
602 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-8.7.99',
|
|
'php' => '7.0.0-7.2.99'
|
|
],
|
|
'conflicts' => [],
|
|
],
|
|
'autoload' => [
|
|
'psr-4' => [
|
|
'Codappix\\SearchCore\\' => 'Classes',
|
|
],
|
|
],
|
|
'state' => 'beta',
|
|
'version' => '0.0.1',
|
|
'author' => 'Daniel Siepmann',
|
|
'author_email' => 'coding@daniel-siepmann.de',
|
|
];
|