mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-21 23:36:12 +01:00
Initial commit
This commit is contained in:
commit
4ec4753cf8
2 changed files with 43 additions and 0 deletions
19
composer.json
Normal file
19
composer.json
Normal 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
24
ext_emconf.php
Normal 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',
|
||||
];
|
Loading…
Reference in a new issue