retailcrm/geohelper-php-sdk

PHP client for Geohelper API

1.0.0 2024-07-30 11:35 UTC

This package is auto-updated.

Last update: 2024-08-30 12:15:52 UTC


README

PHP-client for Geohelper API.

Use API documentation

Requirements

  • PHP 7.4 and higher

Install

  1. Get composer

  2. Run into your project directory:

composer require retailcrm/geohelper-php-sdk ~1.0.0

If you have not used composer before, include autoloader into your project.

require 'path/to/vendor/autoload.php';

Usage

Get countries

$clientInterface = new \GuzzleHttp\Client();

$client = new RetailCrm\Geohelper\ApiClient(
    $clientInterface,
    'api_key'
);

$response = $client->countriesList();

if ($response->isSuccessful()) {
    $countries = isset($response['result']) ? $response['result'] : array();
    foreach ($countries as $country) {
        echo $country['name'];
    }
} else {
    echo sprintf(
        "Error: [HTTP-code %s] %s",
        $response->getStatusCode(),
        $response->getErrorMsg()
    );
}