detailnet / algoliasearch-module
Zend Framework 3 module for Algolia Search API Client
Requires
- php: ^7.1
- algolia/algoliasearch-client-php: ^1.20.0
- zendframework/zend-loader: ^2.5.1
- zendframework/zend-modulemanager: ^2.7.2
- zendframework/zend-mvc: ^3.0.1
- zendframework/zend-servicemanager: ^3.1
Requires (Dev)
- phpmd/phpmd: ^2.2
- phpunit/phpunit: ^7.0
- roave/security-advisories: dev-master
- squizlabs/php_codesniffer: ^3.2
This package is auto-updated.
Last update: 2024-09-29 04:25:55 UTC
README
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:
-
cd my/project/directory
-
Create a
composer.json
file with following contents (or update your existing file accordingly):{ "require": { "detailnet/algoliasearch-module": "1.x-dev" } }
-
Install Composer via
curl -s http://getcomposer.org/installer | php
(on Windows, download the installer and execute it with PHP) -
Run
php composer.phar self-update
-
Run
php composer.phar install
-
Open
configs/application.config.php
and add following key to yourmodules
:'Detail\AlgoliaSearch',
-
Copy
vendor/detailnet/algoliasearch-module/config/algoliasearch.local.php.dist
into your application'sconfig/autoload
directory, rename it toalgoliasearch.local.php
and make the appropriate changes.
Usage
tbd