├── .DS_Store ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── .DS_Store ├── Facades │ └── GeoIPLocationFacade.php ├── GeoIPLocation.php ├── GeoIPLocationServiceProvider.php └── WebServices │ ├── GeoPluginWebService.php │ ├── IpInfoWebService.php │ └── WebService.php └── tests └── GeoIPLocationTest.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/Facades/GeoIPLocationFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/src/Facades/GeoIPLocationFacade.php -------------------------------------------------------------------------------- /src/GeoIPLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/src/GeoIPLocation.php -------------------------------------------------------------------------------- /src/GeoIPLocationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/src/GeoIPLocationServiceProvider.php -------------------------------------------------------------------------------- /src/WebServices/GeoPluginWebService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/src/WebServices/GeoPluginWebService.php -------------------------------------------------------------------------------- /src/WebServices/IpInfoWebService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/src/WebServices/IpInfoWebService.php -------------------------------------------------------------------------------- /src/WebServices/WebService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/src/WebServices/WebService.php -------------------------------------------------------------------------------- /tests/GeoIPLocationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorybiz/geoip-location/HEAD/tests/GeoIPLocationTest.php --------------------------------------------------------------------------------