IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Installation
editInstallation
edit-
Include elasticsearch-php in your
composer.json
file:{ "require": { "elasticsearch/elasticsearch": "~1.0" } }
-
Install the client with composer:
curl -s http://getcomposer.org/installer | php php composer.phar install
-
Include the autoloader in your main project (if you haven’t already), and instantiate a new client :
require 'vendor/autoload.php'; $client = new Elasticsearch\Client();