Download the PHP package versh23/manticore-bundle without Composer
On this page you can find all versions of the php package versh23/manticore-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package manticore-bundle
manticore-bundle
Installation
This bundle should to be installed with Composer The process vary slightly depending on if your application uses Symfony Flex or not.
Following instructions assume you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
Configuration
Create configuration file config/packages/manticore.yaml
Example
In this example will be created a manticore.index_manager.article
service that allow to manipulate index manticore.index.article
- truncate index (
truncateIndex()
) - flush index (
flushIndex()
) - replace/insert/delete operations (
replace()
,insert()
,delete()
,bulkReplace()
,bulkInsert()
) - create a Pagerfanta object (
findPaginated()
) https://github.com/whiteoctober/Pagerfanta - simple find objects (
find()
) -
create custom query by SphinxQL syntax (
createQuery
)For
App\Entity\MyEntity
will be created Event listenermanticore.listener.article
thats allow update your RT indexmy_entity
There are two useful commands:
manticore:index:config
- render config samplemanticore:index:populate
- populate RT index
All versions of manticore-bundle with dependencies
symfony/property-access Version ^4.4|^5.0
foolz/sphinxql-query-builder Version ^2.1
symfony/console Version ^4.4|^5.0
pagerfanta/pagerfanta Version ^2.1
doctrine/orm Version ^2.7
symfony/config Version ^4.4|^5.0
symfony/dependency-injection Version ^4.4|^5.0
symfony/http-kernel Version ^4.4|^5.0
doctrine/doctrine-bundle Version ^2.0
psr/log Version ^1.1