Download the PHP package el-factory/ip-api without Composer

On this page you can find all versions of the php package el-factory/ip-api. 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 ip-api

IpApi - IP Address Information Lookup

Latest Version on Packagist Total Downloads Repo Size Repo Size

The IpApi package provides an easy-to-use interface for looking up information about IP addresses using the ip-api.com API. It allows you to fetch various details about an IP address, such as geographical location, time zone, currency, and more.

Requirements:

Installation

The IpApi package requires Laravel version 7 or higher.

To install the package, you can use Composer:

Configuration

After installing the package, you can optionally publish the configuration file to customize the default settings:

This will create a ip-api.php file in the config directory of your Laravel application. You can modify the default configuration values in this file according to your specific requirements.

Usage

IP Address Lookup

To perform an IP address lookup, you can use the lookup method on the IpApi class:

This will return an array with the details of the provided IP address.

Additional Configuration

You can also customize the IP address lookup by using the following methods:

fields(array $fields): IpApi

Set the fields to be included in the API response. The $fields parameter should be an array of fields you want to retrieve.

usingKey(string $apiKey): IpApi

By default, the package uses the API key provided in config file. If you wish to send different API key for a specific request, you can use the usingKey method to set the API key for that request.

retry(int $times, int $sleep): IpApi

Set the retry configuration for failed API requests. The $times parameter represents the number of retry attempts, and the $sleep parameter specifies the number of seconds to sleep between retries.

lang(string $language): IpApi

Set the language for the API response. The $language parameter should be a two-letter language code.

withHeaders(): IpApi

Include request limit and remaining requests headers in the API response.

Console Command - ip-api:connection

The IpApi package also includes a console command named ip-api:connection that allows you to test the connection to the ip-api.com API with a specific IP address or your public IP address (if not provided).

To use the command, run the following Artisan command:

The command will display the details retrieved from the ip-api.com API for the provided IP address.

Example

Here's an example of using the ip-api:connection command:

This will test the connection to ip-api.com API with the specified IP address and display the details retrieved.

If no IP address is provided, the command will automatically use your public IP address:

Exceptions

The IpApi class may throw the following exceptions:

License

The IpApi package is open-source software licensed under the MIT License. Feel free to use and modify it according to your needs.


All versions of ip-api with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
illuminate/support Version >=7.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 el-factory/ip-api contains the following files

Loading the files please wait ....