Welcome to SEAL’s documentation!#

Introduction#

SEAL stands for: S earch E ngine A bstraction L ayer

The SEAL project is a PHP library designed to simplify the process of interacting with different search engines. It provides a straightforward interface that enables users to communicate with various search engines, including:

  • Meilisearch

  • Opensearch

  • Elasticsearch

  • Algolia

  • Loupe

  • Redisearch

  • Solr

  • Typesense

It also provides integration packages for the Laravel, Symfony, Spiral, Mezzio and Yii PHP frameworks.

It is worth noting that the project draws inspiration from the Doctrine and Flysystem projects. These two projects have been a great inspiration in the development of SEAL, as they provide excellent examples of how to create consistent and user-friendly APIs for complex systems.

Structure#

Basic project overview

SEAL’s provides a basic abstraction layer for add, remove and search and filters for documents. The main class and service handling this is called Engine, which is responsible for all this things. The Schema which is required defines the different Indexes and their Fields.

The project provides different Adapters which the Engine uses to communicate with the different Search Engine software and services. This way it is easy to switch between different search engine software and services.

Glossary

Contents#


Packages#

Full list of packages provided by the SEAL project:

  • cmsig/seal - The core package of the SEAL project.

  • cmsig/seal-algolia-adapter - Adapter for the Algolia search engine.

  • cmsig/seal-elasticsearch-adapter - Adapter for the Elasticsearch search engine.

  • cmsig/seal-opensearch-adapter - Adapter for the Opensearch search engine.

  • cmsig/seal-meilisearch-adapter - Adapter for the Meilisearch search engine.

  • cmsig/seal-redisearch-adapter - Adapter for the Redisearch search engine.

  • cmsig/seal-loupe-adapter - Adapter for the Loupe search engine.

  • cmsig/seal-solr-adapter - Adapter for the Solr search engine.

  • cmsig/seal-typesense-adapter - Adapter for the Typesense search engine.

  • cmsig/seal-read-write-adapter - Adapter to split read and write operations.

  • cmsig/seal-multi-adapter - Adapter to write into multiple search engines.

  • cmsig/seal-laravel-package - Integrates SEAL into the Laravel framework.

  • cmsig/seal-symfony-bundle - Integrates SEAL into the Symfony framework.

  • cmsig/seal-spiral-bridge - Integrates SEAL into the Spiral framework.

  • cmsig/seal-mezzio-module - Integrates SEAL into the Mezzio framework.

  • cmsig/seal-yii-module - Integrates SEAL into the Yii framework.

Have also a look at the following tags: