Initial commit

This commit is contained in:
Leonmrni 2016-12-01 17:17:10 +01:00
commit 4ec4753cf8
2 changed files with 43 additions and 0 deletions

19
composer.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "leonmrni/search_core",
"type": "typo3-cms-extension",
"description": "Leonmrni Search Core.",
"homepage": "http://www.leonmrni.com",
"license": ["GPL-2.0+"],
"autoload": {
"psr-4": {
"Leonmrni\\SearchCore\\": "Classes"
}
},
"authors": [
{
"name": "Justus Leon Moroni",
"email": "developer@leonmrni.com",
"role": "lead"
}
]
}

24
ext_emconf.php Normal file
View file

@ -0,0 +1,24 @@
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Search Core',
'description' => 'Search core for implementing various search types.',
'category' => 'be',
'constraints' => [
'depends' => [
'typo3' => '7.6.2-8.99.99',
'php' => '7.0.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',
];