Download the PHP package imelgrat/freegoip without Composer
On this page you can find all versions of the php package imelgrat/freegoip. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download imelgrat/freegoip
More information about imelgrat/freegoip
Files in imelgrat/freegoip
Package freegoip
Short Description FreeGoIP - A PHP wrapper for FreeGoIP reverse geolocation API.
License MIT
Homepage https://github.com/imelgrat/freegoip
Informations about the package freegoip
FreeGoIP
FreeGoIP - A PHP wrapper for FreeGoIP reverse geolocation API.
freegeoip.net is a service providing a public HTTP API for software developers to search the geolocation of IP addresses. It uses a database of IP addresses associated to cities along with other relevant information such as time zone, latitude and longitude.
The freegeoip web server is free and open source but the public service limit up to 10,000 queries per hour by default. Once this limit is reached, all requests from the IP will result in HTTP 403, forbidden, until the quota is cleared.
Developed by Ivan Melgrati
Requirements
- PHP >= 5.3.0
Installation
Composer
The recommended installation method is through
Composer, a dependency manager for PHP. Just add
imelgrat/freegoip
to your project's composer.json
file:
More details can be found over at Packagist.
Manually
- Copy
src/freegoip.php
to your codebase, perhaps to thevendor
directory. - Add the
freegoip
class to your autoloader orrequire
the file directly.
Feedback
Please open an issue to request a feature or submit a bug report. Or even if you just want to provide some feedback, I'd love to hear. I'm also available on Twitter as @imelgrat.
Contributing
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature
). - Commit your changes (
git commit -am 'Added some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create a new Pull Request.