PHPackages                             jamalo/php-ip-quality-score - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. jamalo/php-ip-quality-score

ActiveLibrary[API Development](/categories/api)

jamalo/php-ip-quality-score
===========================

IPQualityScore API for PHP

2.0.3(2y ago)450.6k↓50%10[1 PRs](https://github.com/jamalo/php-ip-quality-score/pulls)PHPPHP &gt;=7.1

Since Feb 21Pushed 1y ago2 watchersCompare

[ Source](https://github.com/jamalo/php-ip-quality-score)[ Packagist](https://packagist.org/packages/jamalo/php-ip-quality-score)[ Docs](https://www.ipqualityscore.com/)[ RSS](/packages/jamalo-php-ip-quality-score/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

php-ip-quality-score
====================

[](#php-ip-quality-score)

[![Build Status](https://camo.githubusercontent.com/195b127c2b6cb027feee32b8feb59a6034c2f4d887c1fa48e8bd33eadb2ff7ea/68747470733a2f2f7472617669732d63692e6f72672f6a616d616c6f2f7068702d69702d7175616c6974792d73636f72652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/jamalo/php-ip-quality-score)[![Latest Stable Version](https://camo.githubusercontent.com/270f3a78b2707d683a6475499c45ca6339aac3b55a11bbba144a6be3c6445df9/68747470733a2f2f706f7365722e707567782e6f72672f6a616d616c6f2f7068702d69702d7175616c6974792d73636f72652f762f737461626c65)](https://packagist.org/packages/jamalo/php-ip-quality-score)

Installation
------------

[](#installation)

- [Download composer](https://getcomposer.org)
- Run `composer require jamalo/php-ip-quality-score`
- Get API key  for 5,000 FREE api calls per month

Email Validation Example
------------------------

[](#email-validation-example)

IPQualityScore's Email Validation API allows you to detect invalid mailboxes as well as disposable and fraudulent email addresses, spamtraps, and honeypots.

```
$key = '--api--key--';
$qualityScore = new IPQualityScore($key);
$result = $qualityScore->emailVerification->getResponse('test@example.com');

if ($result->isSuccess() && $result->isValid() && $result->getDeliverability() === 'high') {
    // do something...
} else {
    //show alert tot user
}
```

Phone Validation Example
------------------------

[](#phone-validation-example)

IPQualityScore's Proxy Detection API allows you to Proactively Prevent Fraud™ via a simple API that provides over 25 data points for risk analysis, geo location, and IP intelligence.

```
$key = '--api--key--';
$qualityScore = new IPQualityScore($key);
$result = $qualityScore->phoneVerification->getResponse('18001234567');

if ($result->isSuccess() && $result->isValid() && !$result->isRisky() && !$result->isVoip() && !$result->isRecentAbuse()) {
    // do something...
} else {
    //show alert tot user
}
```

Proxy &amp; VPN Detection Example
---------------------------------

[](#proxy--vpn-detection-example)

IPQualityScore's Proxy Detection API allows you to Proactively Prevent Fraud™ via a simple API that provides over 25 data points for risk analysis, geo location, and IP intelligence.

```
$key = '--api--key--';
$qualityScore = new IPQualityScore($key);
$result = $qualityScore->IPAddressVerification
    ->setUserLanguage($_SERVER['HTTP_ACCEPT_LANGUAGE'] ?? '')
    ->setUserAgent($_SERVER['HTTP_USER_AGENT'] ?? '')
    ->getResponse($_SERVER['REMOTE_ADDR']);

if ($result->isSuccess() && ($result->isTor() || $result->isProxy())) {
    // block tor network request or send to /blocked page..
}

if ($result->isSuccess() && ($result->isProxy() || $result->isVpn())) {
    // block proxy/vpn request or send to /blocked page..
}
```

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance26

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~328 days

Total

5

Last Release

966d ago

Major Versions

1.0.0 → 2.0.02020-02-21

### Community

Maintainers

![](https://www.gravatar.com/avatar/d3b062fd517898c575c7eca5c1c45d76cc84e742429137838b67e2c2959d175b?d=identicon)[jamalo](/maintainers/jamalo)

---

Top Contributors

[![jamalo](https://avatars.githubusercontent.com/u/30111652?v=4)](https://github.com/jamalo "jamalo (10 commits)")[![scott-cashortrade](https://avatars.githubusercontent.com/u/105390583?v=4)](https://github.com/scott-cashortrade "scott-cashortrade (3 commits)")[![aXent](https://avatars.githubusercontent.com/u/506956?v=4)](https://github.com/aXent "aXent (1 commits)")[![vincentasakura-ms](https://avatars.githubusercontent.com/u/43333756?v=4)](https://github.com/vincentasakura-ms "vincentasakura-ms (1 commits)")

---

Tags

email-verificationipqualityscoreipqsvpn detectiontor detection

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jamalo-php-ip-quality-score/health.svg)

```
[![Health](https://phpackages.com/badges/jamalo-php-ip-quality-score/health.svg)](https://phpackages.com/packages/jamalo-php-ip-quality-score)
```

###  Alternatives

[temporal/sdk

Temporal SDK

4002.2M18](/packages/temporal-sdk)[storyblok/php-content-api-client

PHP Client for Storyblok Content API

11136.8k4](/packages/storyblok-php-content-api-client)[storyblok/php-management-api-client

Storyblok PHP Client for Management API

1224.4k1](/packages/storyblok-php-management-api-client)[smnandre/pagespeed-api

PageSpeed Insight PHP Api Client 🚀 Analyse web pages for performances metrics, core web vitals...

1511.5k](/packages/smnandre-pagespeed-api)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
