Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Latest commit

 

History

History
45 lines (32 loc) · 1.97 KB

README.md

File metadata and controls

45 lines (32 loc) · 1.97 KB

Zend Framework 3 Module for Algolia Search Search API Client

Build Status Coverage Status Latest Stable Version Latest Unstable Version

Introduction

This module integrates Algolia Search API Client with Zend Framework 2.

Requirements

Zend Framework 2 Skeleton Application (or compatible architecture)

Installation

Install the module through Composer using the following steps:

  1. cd my/project/directory

  2. Create a composer.json file with following contents (or update your existing file accordingly):

    {
        "require": {
            "detailnet/algoliasearch-module": "1.x-dev"
        }
    }
  3. Install Composer via curl -s http://getcomposer.org/installer | php (on Windows, download the installer and execute it with PHP)

  4. Run php composer.phar self-update

  5. Run php composer.phar install

  6. Open configs/application.config.php and add following key to your modules:

    'Detail\AlgoliaSearch',
  7. Copy vendor/detailnet/algoliasearch-module/config/algoliasearch.local.php.dist into your application's config/autoload directory, rename it to algoliasearch.local.php and make the appropriate changes.

Usage

tbd