TYPO3 CMS 8.x Extension with basic Integration of Elasticsearch
Find a file
Daniel Siepmann a858d748ee
TASK: Shorten code
* Do not use variable, instead provide result to method call.
* Do not provide public method which is not part of API. Otherwise one
  might use it in custom PHP code and switch connection later on. Then the
  method call will no longer work.
2018-12-29 18:06:26 +01:00
.phan TASK: Add phan configuration 2018-03-08 11:08:18 +01:00
Classes TASK: Shorten code 2018-12-29 18:06:26 +01:00
Configuration TASK: Remove custom filter for fe group filtering 2018-12-29 17:59:23 +01:00
Documentation TASK: Remove custom filter for fe group filtering 2018-12-29 17:59:23 +01:00
Resources [TASK] Revert to only one plugin based on feedback 2018-10-29 17:29:11 +01:00
Tests TASK: Refactor type handling for elasticsearch 2018-12-29 18:05:24 +01:00
.gitignore FEATURE: Add first code and tests to integrate travis ci 2016-12-09 11:47:28 +01:00
.scrutinizer.yml TASK: Switch to new php scurtinizer engine 2018-03-06 17:58:27 +01:00
.travis.yml TASK: Update elasticsearch even further 2018-12-29 18:01:25 +01:00
composer.json TASK: Update elasticsearch even further 2018-12-29 18:01:25 +01:00
ext_conf_template.txt FEATURE: Allow to disable elasticsearch integration 2018-02-22 20:56:51 +01:00
ext_emconf.php [TASK] Remove support for TYPO3 7.6 2018-10-26 14:48:13 +02:00
ext_localconf.php BUGFIX: Keep default action non cacheable 2018-12-27 11:57:24 +01:00
Makefile [TASK] Remove support for TYPO3 7.6 2018-10-26 14:48:13 +02:00
phpcs.xml.dist TASK: Use Code Sniffer at travis 2017-11-11 16:52:02 +01:00
readme.rst FEATURE: Add readme by reusing documentation 2016-12-16 12:20:54 +01:00

TYPO3 Extension search_core

Introduction

What does it do?

The goal of this extension is to provide search integrations into TYPO3 CMS. The extension will provide a convenient API to allow developers to provide concrete implementations of backends like Elasticsearch, Algolia or Solr.

The extension provides integration into TYPO3 like a frontend plugin for searches and hooks to update search indexes on updates. Also a command line interface is provided for interactions like re-indexing.

Current state

This is still a very early beta version. More information can be taken from Github at current issues.

We are also focusing on Code Quality and Testing through travis ci, phpcs, phpunit and phpstan.