jover/ripe-stat

Wrapper for the Ripe Stat API

0.1.2 2016-08-19 14:18 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:56:49 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