Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/usox/ipintel
- Owner: usox
- License: mit
- Created: 2019-11-01T09:47:55.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-29T09:06:36.000Z (almost 2 years ago)
- Last Synced: 2024-10-04T11:37:08.531Z (about 1 month ago)
- Topics: api, client, getipintel, php, security, vpn-detection
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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');
```