nelkasovic/ipstack-finder
最新稳定版本:1.0.6
Composer 安装命令:
composer require nelkasovic/ipstack-finder
包简介
README 文档
README
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.
统计信息
- 总下载量: 195
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-08-10