cmsig / seal-algolia-adapter
An adapter to support algolia in cmsig/seal search abstraction.
0.12.16
2026-07-22 15:39 UTC
Requires
- php: ^8.1
- algolia/algoliasearch-client-php: ^4.4
- cmsig/seal: ^0.12
- psr/container: ^1.0 || ^2.0
Requires (Dev)
- php-cs-fixer/shim: ^3.51
- phpstan/extension-installer: ^1.0
- phpstan/phpstan: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- phpunit/phpunit: ^10.3
- rector/rector: ^2.0
Provides
- cmsig/seal-adapter-implementation: 0.12.16
Replaces
- schranz-search/seal-algolia-adapter: 0.12.16
This package is auto-updated.
Last update: 2026-07-27 12:54:36 UTC
README
Your feedback is important 📘Note: This is part of the
cmsig/searchproject create issues in the main repository.
Are you working with SEAL? Let us know! | Which Search Engines do you use and why?
SEAL
Algolia Adapter
The AlgoliaAdapter write the documents into the Algolia SaaS.
Note: This project is heavily under development and any feedback is greatly appreciated.
Installation
Use composer for install the package:
composer require cmsig/seal cmsig/seal-algolia-adapter
Usage
The following code shows how to create an Engine using this Adapter:
<?php
use Algolia\AlgoliaSearch\SearchClient;
use CmsIg\Seal\Adapter\Algolia\AlgoliaAdapter;
use CmsIg\Seal\Engine;
$client = Algolia\AlgoliaSearch\SearchClient::create(
'YourApplicationID',
'YourAdminAPIKey',
);
$engine = new Engine(
new AlgoliaAdapter($client),
$schema,
);
Via DSN for your favorite framework:
algolia://YourApplicationID:YourAdminAPIKey