Skip to content

Latest commit

 

History

History
59 lines (45 loc) · 2.64 KB

README.md

File metadata and controls

59 lines (45 loc) · 2.64 KB

Algolia for PHP

The perfect starting point to integrate Algolia within your PHP project

Build Status Total Downloads Latest Version License

DocumentationLaravelSymfonyCommunity ForumStack OverflowReport a bugSupport

✨ Features

  • Thin & minimal low-level HTTP client to interact with Algolia's API
  • Supports php ^5.3.

💡 Getting Started

First, install Algolia PHP API Client via the composer package manager:

composer require algolia/algoliasearch-client-php

Then, create objects on your index:

$client = Algolia\AlgoliaSearch\SearchClient::create(
  'YourApplicationID',
  'YourAdminAPIKey'
);

$index = $client->initIndex('your_index_name');

$index->saveObjects(['objectID' => 1, 'name' => 'Foo']);

Finally, you may begin searching a object using the search method:

$objects = $index->search('Fo');

For full documentation, visit the Algolia PHP API Client.

📄 License

Algolia PHP API Client is an open-sourced software licensed under the MIT license.