├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── SxGeo.dat ├── SxGeoCity.dat └── SypexGeo.php /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore IDE specific files 2 | src/sxgeo_sample.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostbrook/sypex-geo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostbrook/sypex-geo/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostbrook/sypex-geo/HEAD/composer.json -------------------------------------------------------------------------------- /src/SxGeo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostbrook/sypex-geo/HEAD/src/SxGeo.dat -------------------------------------------------------------------------------- /src/SxGeoCity.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostbrook/sypex-geo/HEAD/src/SxGeoCity.dat -------------------------------------------------------------------------------- /src/SypexGeo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostbrook/sypex-geo/HEAD/src/SypexGeo.php --------------------------------------------------------------------------------