nelkasovic/ipstack-finder

1.0.6 2023-03-24 12:32 UTC

This package is auto-updated.

Last update: 2024-04-24 15:08:31 UTC


README

Latest Version on Packagist Build Status Quality Score Total Downloads

This Laravel package provides a simple to use facade to request data from the ipstack.com geolocation API.

Installation

You can install the package via composer:

composer require nelkasovic/ipstack-finder

The package will be immediately available thanks to Laravel auto discovery.

Configuration

Before making any requests however, you'll need to provide an ipstack.com API key. You can sign up for a free key on their website.

The best way to set the API key is by assigning the IPSTACK_API_KEY environmental variable in your .env file. Alternatively, you can publish the packages config file to your application and edit the it directly.

Optionally, you can also set a IPSTACK_DEFAULT_LANGUAGE environmental variable, which will update the default response language. For language options, see the API documentation.

If you would like to publish the config files, run the below artisan command:

php artisan vendor:publish --provider="Arimolzer\IPStackFinder\IPStackFinderServiceProvider"

Usage

Once the package is installed, you can call the facade by using the IPFinder facade:

/** @var array $data */
$data = IPStackFinderFacade::get('8.8.8.8');

Currently the only available method is IPStackFinderFacade::get(string $ip).

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email ari.molzer@molzertech.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.