Symfony Framework for the PHP Search API

Features

  • Made to simplify the usage of Algolia’s API within the Symfony Framework
  • Get started with 5 lines of YAML
  • Leverages Normalizers 2 to convert entities for indexing
  • Unsubscribe from doctrine events to use a messaging/queue system
  • Background retry strategy to ensure uptime
  • Seamless batching via iterators to optimize number of network calls
  • Zero downtime reindexing feature
  • API access to all Algolia functionality, AI products, and advanced features, including Recommend 

Version

  • Compatible with Symfony 3.4 LTS, Symfony >= 4.0, PHP >= 7.2

Related Integrations

  • PHP API Client, Autocomplete, InstantSearch

Key links


Get started

INSTALL

1composer require algolia/search-bundle:4.0.0

INDEX

1algolia_search:
2  indices:
3    - name: posts
4      class: App\Entity\Post
5    - name: comments
6      class: App\Entity\Comment
7
8$searchService->index($entityManager, $postsAndComments);

SEARCH

1$em = $this->getDoctrine()->getManagerForClass(Post::class);
2$posts = $this->searchService->search($em, Post::class, 'query');
Get started for freeExplore all developer docs

Built with Algolia

Frontend Tools
Templates & Starters

Ecommerce Starter

Starter for product search powered by Algolia InstantSearch

  • vuejs
  • react
  • angular
  • javascript