spikkl/spikkl-php-laravel-client

Spikkl API client wrapper for Laravel
1,072
Install
composer require spikkl/spikkl-php-laravel-client
Latest Version:v1.3.0
PHP:^7.2 | ^8.0
License:BSD-2-Clause
Last Updated:Oct 4, 2022
Links: GitHub  ·  Packagist
Maintainer: hgwevandenberg

Spikkl-php-laravel-client incorporates the Spikkl API into your Laravel or Lumen project.

Build Status

Requirements

Installation

Add Spikkl-php-laravel-client to your composer file via the composer require command:

   $ composer require spikkl/spikkl-php-laravel-client:^1.0

Or add it to composer.json manually:

"require": {
  "spikkl/spikkl-php-laravel-client": "^1.0"
}

Spikkl-php-laravel-client's service provider will be automatically registered using Laravel's auto-discovery feature.

Note: for Lumen you have to add the Spikkl facade and service provider manually to: bootstrap/app.php:

$app->withFacades(true, [ 'Spikkl\Laravel\Facades\Spikkl' => 'Spikkl' ]);

$app->register(Spikkl\Laravel\ServiceProvider::class);

Configuration

You will only need to add the SPIKKL_API_KEY variable to your .env file.

SPIKKL_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Example usage

Here you can see an example of just how simple this package is to use.

Location lookup by supported country code, postal code, street number, and street number suffix.

$results = Spikkl::api()->lookup('nld', '2611HB', '175', null);

Location reverse lookup by supported country code, longitude, and latitude.

$results = Spikkl::api()->reverse('nld', 4.354901, 52.012133);

Note: longitude and latitude values will be rounded to 9 decimal places.

Global helper method

For your convenience we have added the global spikkl() helper function. It is an easy shortcut to the Spikkl::api() facade accessor.

// Using facade accessor
$results = Spikkl::api()->lookup('nld', '2611HB', '175', null);

// Using global helper function
$results = spikkl()->lookup('nld', '2611HB', '175', null);

License

BSD (Berkeley Software Distribution) License. Copyright (c) 2020, Spikkl

Support

Contact: www.spikkl.nlinfo@spikkl.nl

Related Packages

bigperson/laravel-vk-geo

Parse countries, regions and cities from vk.com api

461 14
vinelab/http

An http library developed for the laravel framework. aliases itself as HttpClien...

306,363 57
atehnix/laravel-vk-requester

Laravel package for Vk.com API

3,446 74
devio/pipedrive

Complete Pipedrive API client for PHP and/or Laravel

1,904,361 171
sdclub/laravel-rest-api-client

An elegant and smart Rest API Client with OAuth2 authentication support. Build f...

34 0