commit 4ec4753cf8b455adddb85019ac4818f17be7cf1e Author: Leonmrni Date: Thu Dec 1 17:17:10 2016 +0100 Initial commit diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..de16915 --- /dev/null +++ b/composer.json @@ -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" + } + ] +} diff --git a/ext_emconf.php b/ext_emconf.php new file mode 100644 index 0000000..185982f --- /dev/null +++ b/ext_emconf.php @@ -0,0 +1,24 @@ + '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', +];