Download the PHP package ayesh/geo-ip without Composer

On this page you can find all versions of the php package ayesh/geo-ip. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package geo-ip

Geo IP

Fast IP address to country code lookup - Extension-less, automatic updates, and fast JSON tree lookup

Introduction

A PHP package to lookup the country of a given IP address (IPv4 supported, IPv6 on the way).

This library focuses on performance and simplicity, at the cost of slightly less precision. It is designed to return an ISO country for a given IP address, and does it well. It does not provide precise locations (such as region or city) by design.

This library uses Ayesh/Geo-IP-Database, an automated repository that publishes database updates weekly at most. The database is entirely a list of flag JSON files, that maps IP ranges to a country code.

This library does not require storing a binary data file, or HTTP requests, and thus is extremely fast.

Note that the data may not be as accurate as a full database. Autofilling the country field in a form, or redirecting a user to a regional site are some of the ideal use case. Pinpointing the precise user location to find hot singles in the area is pushing it too much.

Automatic updates

This library depends on Ayesh/Geo-IP-Database package, that provides the JSON files list.

Automatic updates to the ayesh/geo-ip-database package means an update to the database. They are in the format of v1.0.YYYYMMDD.

Occassional composer update will automatically trigger database updates.

Installation

Install this library with the following command. Alternately, it is possible to manually edit the composer.json file and add ayesh/geo-ip package as well.

Usage

This library provides a \Ayesh\GeoIP\GeoIPLookup class. Use the Composer autoloader (highly recommended), or manually require src/GeoIPLookup.php file.

Automatic database discovery

The createFromDefaultDatabase static method creates a GeoIPLookup by setting the JSON data directory to the default ayesh/geo-ip-database location in a standard Composer installation (vendor/ayesh/geo-ip-database/data).

Manual database path

Contributions and Issues

Feel free to open a PR or an issue for any contributions or support questions.

Database Source

This library makes use of ayesh/geo-ip-database, which in turn uses GeoLite2 data created by MaxMind, available from https://www.maxmind.com.

This library itself is MIT licensed. However, note that the MaxMind database is distributed under CC-BY-NC-SA-4.0.


All versions of geo-ip with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0
ayesh/geo-ip-database Version ^1.0.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ayesh/geo-ip contains the following files

Loading the files please wait ....