Skip to content

How to integrate Sylius with search service

We have created ecommerce-synch tool that supports Sylius platform. This tool synchronizes products and categories with our search service. You can see it on GitHub

How does it work

Cron executes synchronization command. It takes configuration file, determine what is input module. It executes its SQL SELECT statements and saves result into CSV files (products and categories). Output module push CSV data into our search service.

Sylius supported versions

  • 1.4.3

Other versions might work as well, but was not tested.

Installation

composer require logshub/ecommerce-synch

  • Make sure you set module = "sylius" in input section.
  • Pay attention to option sylius_locale = "en_US", as might be changed in your case.

More details on GitHub