scullwm/dbip-client

1.0.0 2021-09-11 20:06 UTC

This package is auto-updated.

Last update: 2024-04-05 02:13:48 UTC


README

DbIpClient


Modern client library for the db-ip.com API services

Getting Started

First of all, you need to define an add the API client in your project. composer require scullwm/dbip-client

    $dbipClient = new Client('my_secret_token');
    $ipDetails = $dbipClient->getIpDetails('8.8.8.8');
    $ipDetails->isRisky(); // false

    $apiThrottling = $dbipClient->getApiThrottling();
    echo $apiThrottling->getQueriesLeft(); // 9996

Running the Test Suite

Once you have all dependencies installed via composer install, you can run the test suite with:

./vendor/bin/phpunit tests/