acidreign / laravel-geoip2 by acidreign
forked from CsanadNovak/laravel-geoip2

Laravel wrapper for MaxMind GeoIP2
951
1
3
Package Data
Maintainer Username: acidreign
Maintainer Contact: dave.hennigar@gmail.com (Dave Hennigar)
Package Create Date: 2016-07-07
Package Last Update: 2019-10-30
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:11:56
Package Statistics
Total Downloads: 951
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 3
Total Forks: 2
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"