littio/laravel-geoip2

Laravel wrapper for MaxMind GeoIP2
35
Install
composer require littio/laravel-geoip2
Latest Version:v1.1.2
PHP:>=5.4.0
License:MIT
Last Updated:Mar 20, 2017
Links: GitHub  ·  Packagist
Maintainer: alexgr

GeoIP2 for Laravel 5.2

Install

Via Composer

$ composer require acidreign/laravel-geoip2
'providers' => array(
    Acidreign\LaravelGeoIP2\GeoIP2ServiceProvider::class,
)
'aliases' => array(
    'GeoIP2' => Acidreign\LaravelGeoIP2\GeoIP2Facade::class,
)
$ php artisan vendor:publish --provider="Acidreign\LaravelGeoIP2\GeoIP2ServiceProvider"