Littio / laravel-geoip2 by alexgr
forked from cdave3/laravel-geoip2

Laravel wrapper for MaxMind GeoIP2
33
0
4
Package Data
Maintainer Username: alexgr
Maintainer Contact: dave.hennigar@gmail.com (Dave Hennigar)
Package Create Date: 2017-03-20
Package Last Update: 2017-03-20
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:05:40
Package Statistics
Total Downloads: 33
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 4
Total Forks: 0
Total Open Issues: 0

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"