zf2 / zf2amazoncloudsearch
This is amazon cloud search module for zend 2
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/zf2/zf2amazoncloudsearch
Requires
- php: >=5.3.3
This package is not auto-updated.
Last update: 2025-10-11 18:10:49 UTC
README
Installation using composer
- add a 'zf2/ZF2Amazoncloudsearch' : 'dev' in composer.json file
- now excute composer install
- add Module in you application.config.php file
** How you can use this in your project **
$cloudobj = $this->getServiceLocator()->get('cloudSearch');
$data = array(
'name of field on cloud search'
);
$result = $cloudobj->search('query',$data );