Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/usox/ipintel

PHP Client for getipintel.net
https://github.com/usox/ipintel

api client getipintel php security vpn-detection

Last synced: 19 days ago
JSON representation

PHP Client for getipintel.net

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/usox/ipintel.svg?branch=master)](https://travis-ci.org/usox/ipintel)

# IpIntel

Small library to query the fraud ip detection service of https://getipintel.net/

# Requirements

- php 7.3
- curl
- an email address

# Installation

`composer require usox/ipintel`

# Usage

```php
$client = new \Usox\InIntel(
new \Curl\Curl(),
'[email protected]
);

$result = $client->validate('127.0.0.1');
```