2016-12-15 17:59:13 +01:00
|
|
|
.. highlight:: bash
|
2016-12-15 16:47:09 +01:00
|
|
|
.. _installation:
|
|
|
|
|
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
2018-03-08 08:17:41 +01:00
|
|
|
Composer
|
|
|
|
--------
|
|
|
|
|
2016-12-15 17:59:13 +01:00
|
|
|
The extension can be installed through composer::
|
2016-12-15 16:47:09 +01:00
|
|
|
|
2018-09-27 16:57:16 +02:00
|
|
|
composer require "codappix/search_core" "~0.0.7"
|
2018-03-08 08:17:41 +01:00
|
|
|
|
|
|
|
Note that you have to allow unstable packages:
|
|
|
|
|
|
|
|
.. code-block:: json
|
2016-12-15 16:47:09 +01:00
|
|
|
|
2018-03-08 08:17:41 +01:00
|
|
|
{
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
|
|
|
}
|
|
|
|
|
|
|
|
Download
|
|
|
|
--------
|
|
|
|
|
|
|
|
You can also `download`_ the extension and placing it inside the :file:`typo3conf/ext`-Folder of
|
|
|
|
your installation. In that case you need to install all dependencies yourself. Dependencies are:
|
2016-12-16 12:55:23 +01:00
|
|
|
|
2019-06-06 16:14:14 +02:00
|
|
|
.. code::
|
|
|
|
|
|
|
|
"php": ">=7.2.0 <8",
|
|
|
|
"typo3/cms-core": "^9.5",
|
|
|
|
"ruflin/elastica": "^3.2"
|
2016-12-16 12:55:23 +01:00
|
|
|
|
2018-03-08 08:17:41 +01:00
|
|
|
Setup
|
|
|
|
-----
|
|
|
|
|
2016-12-15 16:47:09 +01:00
|
|
|
Afterwards you need to enable the extension through the extension manager and include the static
|
2017-07-06 16:17:30 +02:00
|
|
|
TypoScript setup.
|
2016-12-15 16:47:09 +01:00
|
|
|
|
2018-03-08 08:17:41 +01:00
|
|
|
If you **don't** want to use the included Elasticsearch integration, you have to disable it in the
|
2018-02-22 20:49:25 +01:00
|
|
|
extension manager configuration of the extension by checking the checkbox.
|
|
|
|
It's currently enabled by default but will be moved into its own extension in the future.
|
|
|
|
|
2018-03-08 08:17:41 +01:00
|
|
|
.. _download: https://github.com/codappix/search_core/archive/develop.zip
|