├── CHANGELOG.md ├── LICENSE ├── README.md ├── autoload.php ├── composer.json ├── ext ├── config.m4 ├── config.w32 ├── maxminddb.c ├── php_maxminddb.h └── tests │ ├── 001-load.phpt │ ├── 002-final.phpt │ └── 003-open-basedir.phpt ├── package.xml └── src └── MaxMind └── Db ├── Reader.php └── Reader ├── Decoder.php ├── InvalidDatabaseException.php ├── Metadata.php └── Util.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/autoload.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/composer.json -------------------------------------------------------------------------------- /ext/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/ext/config.m4 -------------------------------------------------------------------------------- /ext/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/ext/config.w32 -------------------------------------------------------------------------------- /ext/maxminddb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/ext/maxminddb.c -------------------------------------------------------------------------------- /ext/php_maxminddb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/ext/php_maxminddb.h -------------------------------------------------------------------------------- /ext/tests/001-load.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/ext/tests/001-load.phpt -------------------------------------------------------------------------------- /ext/tests/002-final.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/ext/tests/002-final.phpt -------------------------------------------------------------------------------- /ext/tests/003-open-basedir.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/ext/tests/003-open-basedir.phpt -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/package.xml -------------------------------------------------------------------------------- /src/MaxMind/Db/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/src/MaxMind/Db/Reader.php -------------------------------------------------------------------------------- /src/MaxMind/Db/Reader/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/src/MaxMind/Db/Reader/Decoder.php -------------------------------------------------------------------------------- /src/MaxMind/Db/Reader/InvalidDatabaseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/src/MaxMind/Db/Reader/InvalidDatabaseException.php -------------------------------------------------------------------------------- /src/MaxMind/Db/Reader/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/src/MaxMind/Db/Reader/Metadata.php -------------------------------------------------------------------------------- /src/MaxMind/Db/Reader/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/MaxMind-DB-Reader-php/HEAD/src/MaxMind/Db/Reader/Util.php --------------------------------------------------------------------------------