Prepare for 0.6.1
This commit is contained in:
parent
e014aadf8d
commit
cb9c024699
|
@ -1,6 +1,15 @@
|
||||||
CHANGELOG
|
CHANGELOG
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.6.1 (2014-05-01)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* This API now officially supports HHVM.
|
||||||
|
* The `maxmind-db/reader` dependency was updated to a version that does not
|
||||||
|
require BC Math.
|
||||||
|
* The Composer compatibility autoload rules are now targeted more narrowly.
|
||||||
|
* A `box.json` file is included to build a Phar package.
|
||||||
|
|
||||||
0.6.0 (2014-02-19)
|
0.6.0 (2014-02-19)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -234,6 +234,8 @@ to the client API, please see
|
||||||
This code requires PHP 5.3 or greater. Older versions of PHP are not
|
This code requires PHP 5.3 or greater. Older versions of PHP are not
|
||||||
supported.
|
supported.
|
||||||
|
|
||||||
|
This library works and is tested with HHVM.
|
||||||
|
|
||||||
This library also relies on the [Guzzle HTTP client](http://guzzlephp.org/)
|
This library also relies on the [Guzzle HTTP client](http://guzzlephp.org/)
|
||||||
and the [MaxMind DB Reader](https://github.com/maxmind/MaxMind-DB-Reader-php).
|
and the [MaxMind DB Reader](https://github.com/maxmind/MaxMind-DB-Reader-php).
|
||||||
|
|
||||||
|
@ -248,7 +250,7 @@ The GeoIP2 PHP API uses [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
## Copyright and License ##
|
## Copyright and License ##
|
||||||
|
|
||||||
This software is Copyright (c) 2013 by MaxMind, Inc.
|
This software is Copyright (c) 2014 by MaxMind, Inc.
|
||||||
|
|
||||||
This is free software, licensed under the Apache License, Version 2.0.
|
This is free software, licensed under the Apache License, Version 2.0.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "geoip2/geoip2",
|
"name": "geoip2/geoip2",
|
||||||
"description": "MaxMind GeoIP2 PHP API",
|
"description": "MaxMind GeoIP2 PHP API",
|
||||||
"keywords": [ "geoip", "geolocation", "maxmind" ],
|
"keywords": ["geoip", "geoip2", "geolocation", "ip", "maxmind"],
|
||||||
"homepage": "https://github.com/maxmind/GeoIP2-php",
|
"homepage": "https://github.com/maxmind/GeoIP2-php",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"guzzle/guzzle": "3.*",
|
"guzzle/guzzle": "3.*",
|
||||||
"maxmind-db/reader": "0.3.*",
|
"maxmind-db/reader": "~0.3.1",
|
||||||
"php": ">=5.3.1"
|
"php": ">=5.3.1"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-0": {
|
"psr-0": {
|
||||||
"GeoIp2": "src/",
|
"GeoIp2": "src/",
|
||||||
"JsonSerializable" : "compat/"
|
"JsonSerializable": "compat/"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user