├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── composer.json ├── examples └── benchmark.php └── src ├── Database └── Reader.php ├── Exception ├── AddressNotFoundException.php ├── AuthenticationException.php ├── GeoIp2Exception.php ├── HttpException.php ├── InvalidRequestException.php └── OutOfQueriesException.php ├── Model ├── AnonymousIp.php ├── AnonymousPlus.php ├── Asn.php ├── City.php ├── ConnectionType.php ├── Country.php ├── Domain.php ├── Enterprise.php ├── Insights.php └── Isp.php ├── ProviderInterface.php ├── Record ├── AbstractNamedRecord.php ├── AbstractPlaceRecord.php ├── Anonymizer.php ├── City.php ├── Continent.php ├── Country.php ├── Location.php ├── MaxMind.php ├── Postal.php ├── RepresentedCountry.php ├── Subdivision.php └── Traits.php ├── Util.php └── WebService └── Client.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/composer.json -------------------------------------------------------------------------------- /examples/benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/examples/benchmark.php -------------------------------------------------------------------------------- /src/Database/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Database/Reader.php -------------------------------------------------------------------------------- /src/Exception/AddressNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Exception/AddressNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Exception/AuthenticationException.php -------------------------------------------------------------------------------- /src/Exception/GeoIp2Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Exception/GeoIp2Exception.php -------------------------------------------------------------------------------- /src/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Exception/HttpException.php -------------------------------------------------------------------------------- /src/Exception/InvalidRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Exception/InvalidRequestException.php -------------------------------------------------------------------------------- /src/Exception/OutOfQueriesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Exception/OutOfQueriesException.php -------------------------------------------------------------------------------- /src/Model/AnonymousIp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/AnonymousIp.php -------------------------------------------------------------------------------- /src/Model/AnonymousPlus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/AnonymousPlus.php -------------------------------------------------------------------------------- /src/Model/Asn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/Asn.php -------------------------------------------------------------------------------- /src/Model/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/City.php -------------------------------------------------------------------------------- /src/Model/ConnectionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/ConnectionType.php -------------------------------------------------------------------------------- /src/Model/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/Country.php -------------------------------------------------------------------------------- /src/Model/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/Domain.php -------------------------------------------------------------------------------- /src/Model/Enterprise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/Enterprise.php -------------------------------------------------------------------------------- /src/Model/Insights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/Insights.php -------------------------------------------------------------------------------- /src/Model/Isp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Model/Isp.php -------------------------------------------------------------------------------- /src/ProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/ProviderInterface.php -------------------------------------------------------------------------------- /src/Record/AbstractNamedRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/AbstractNamedRecord.php -------------------------------------------------------------------------------- /src/Record/AbstractPlaceRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/AbstractPlaceRecord.php -------------------------------------------------------------------------------- /src/Record/Anonymizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/Anonymizer.php -------------------------------------------------------------------------------- /src/Record/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/City.php -------------------------------------------------------------------------------- /src/Record/Continent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/Continent.php -------------------------------------------------------------------------------- /src/Record/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/Country.php -------------------------------------------------------------------------------- /src/Record/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/Location.php -------------------------------------------------------------------------------- /src/Record/MaxMind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/MaxMind.php -------------------------------------------------------------------------------- /src/Record/Postal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/Postal.php -------------------------------------------------------------------------------- /src/Record/RepresentedCountry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/RepresentedCountry.php -------------------------------------------------------------------------------- /src/Record/Subdivision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/Subdivision.php -------------------------------------------------------------------------------- /src/Record/Traits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Record/Traits.php -------------------------------------------------------------------------------- /src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/Util.php -------------------------------------------------------------------------------- /src/WebService/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/GeoIP2-php/HEAD/src/WebService/Client.php --------------------------------------------------------------------------------