geocoder-php/algolia-places-provider

Geocoder AlgoliaPlaces adapter

Package info

github.com/geocoder-php/algolia-places-provider

Homepage

pkg:composer/geocoder-php/algolia-places-provider

Statistics

Installs: 118 773

Dependents: 3

Suggesters: 1

Stars: 6

0.5.0 2025-04-15 13:24 UTC

Requires

Suggests

None

Conflicts

None

Replaces

None

MIT 4f2213f87f1508d6e1e79cdae173b376e7641f8d

  • Fabien Lalanne <lalanne.fabien.woop@gmail.com>

This package is auto-updated.

Last update: 2026-06-21 12:07:02 UTC


README

👁 Build Status
👁 Latest Stable Version
👁 Total Downloads
👁 Monthly Downloads
👁 Code Coverage
👁 Quality Score
👁 Software License

This is the Algolia Places provider from the PHP Geocoder. This is a READ ONLY repository. See the main repo for information and documentation.

Install

composer require geocoder-php/algolia-places-provider

Usage

The Algolia Places API allows up to 1000 free requests per day (per IP) without authentication.

By signing up for an account you can make 100,000 requests per month (~3000 a day).

See: https://community.algolia.com/places/pricing.html

Locales

You should set a locale on the query. If it is missing, results may not be as complete for non english speaking countries.

use Geocoder\Query\GeocodeQuery;
use Geocoder\Query\ReverseQuery;

$httpClient = new \Http\Discovery\Psr18Client();

// Unauthenticated
$provider = new \Geocoder\Provider\AlgoliaPlaces\AlgoliaPlaces($httpClient);
// Authenticated
$provider = new \Geocoder\Provider\AlgoliaPlaces\AlgoliaPlaces($httpClient, '<your-key>', '<your-app-id>');

$geocoder = new \Geocoder\StatefulGeocoder($provider, 'en');

$result = $geocoder->geocodeQuery(GeocodeQuery::create('Paris')->withLocale('fr-FR'));

Contribute

Contributions are very welcome! Send a pull request to the main repository or report any issues you find on the issue tracker.