jover / ripe-stat
Wrapper for the Ripe Stat API
0.1.2
2016-08-19 14:18 UTC
Requires
- zendframework/zend-http: ^2.5
- zendframework/zend-json: ^3.0
This package is not auto-updated.
Last update: 2024-11-09 20:17:37 UTC
README
Simple PHP wrapper around Ripe AbuseContactFinder
Install RipeStat
composer require jover/ripe-stat
Using it
use RipeStat\AbuseContactFinder;
// normal use
$rs = new AbuseContactFinder();
// If you make a lot of calls, get a sourceapp id from ripe :)
$rs = new AbuseContactFinder('my sourceapp id');
// making a call
$data = $rs->get('ip, asin, or prefix');
print_r($data);
Example
see example.php