PHPackages                             brickheadz/php-nomorebounce - 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. brickheadz/php-nomorebounce

ActiveLibrary[API Development](/categories/api)

brickheadz/php-nomorebounce
===========================

Library to handle NoMoreBounce APIs

1.0.3(7y ago)1131GPL-3.0-or-laterPHPPHP &gt;=7.0

Since Oct 19Pushed 7y ago1 watchersCompare

[ Source](https://github.com/brickheadz/php-nomorebounce)[ Packagist](https://packagist.org/packages/brickheadz/php-nomorebounce)[ Docs](https://github.com/brickheadz/php-nomorebounce)[ RSS](/packages/brickheadz-php-nomorebounce/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (5)Used By (0)

Wrapper NoMoreBounce API
========================

[](#wrapper-nomorebounce-api)

[![Latest Stable Version](https://camo.githubusercontent.com/8021421f0673c2118a4a28bb1d9694dadd44b064d0b95f43cabbcf246a7d00ba/68747470733a2f2f706f7365722e707567782e6f72672f627269636b686561647a2f7068702d6e6f6d6f7265626f756e63652f762f737461626c65)](https://packagist.org/packages/brickheadz/php-nomorebounce)[![License](https://camo.githubusercontent.com/ca86407b2d87889fc8d4ca8c23d0c3eb9260a181778824e472902c89552f4957/68747470733a2f2f706f7365722e707567782e6f72672f627269636b686561647a2f7068702d6e6f6d6f7265626f756e63652f6c6963656e7365)](https://packagist.org/packages/brickheadz/php-nomorebounce)

A simple interface to NoMoreBounce APIs.

See [NoMoreBounce documentation](https://www.nomorebounce.com/docs/index.html) for info on the service.

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

[](#installation)

Install the package through [composer](http://getcomposer.org):

```
composer require brickheadz/php-nomorebounce
```

Make sure, that you include the composer [autoloader](https://getcomposer.org/doc/01-basic-usage.md#autoloading)somewhere in your codebase.

Basic usage
-----------

[](#basic-usage)

- Create (or copy from examples folder) a credentials.json file with connector\_id and token fields

```
{
    "connector_id": ,
    "token":
}
```

- Create a new instance of NoMoreBounce and pass the path of credentials.json file

```
use brickheadz\NoMoreBounce\NoMoreBounce;

// Save path to file into variable
$credential_path = __DIR__ . '/credentials.json';
// Instance NoMoreBounce class
$NoMoreBounce = new NoMoreBounce($credential_path);
// Call all needed method from $NoMoreBounce object
```

Examples
--------

[](#examples)

- Validate email :

```
$response = $NoMoreBounce->checkEmail('testemail@gmail.com');
if ($response) {
    echo "Valid mailbox found";
} else {
    echo "No valid mailbox found";
}
```

- Create list of emails :

```
$emailList = ['test1@gmail.com', 'test2@gmail.com'];

$response = $NoMoreBounce->createListWithEmails([$emailList])
```

Etc.

Known issues
------------

[](#known-issues)

- API account/credits is broken at the moment, if you call the relative function an Exception will thrown due to invalid response.
- API check/ is a POST request not a GET one, the relative function will already use the right method.

Contribute
----------

[](#contribute)

We welcome any contribution to this library. Feel free to clone this repository, make the desired code changes, test locally (you need a token and connector\_id)

```
$ composer dump-autoload
$ php  examples/test.php
```

and send a Pull Request.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 86.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 ~16 days

Total

4

Last Release

2713d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3dab9722173558b1e2d19c1683d66b28cdf9a274ddd1e005575ffe7c7d833104?d=identicon)[brickheadz](/maintainers/brickheadz)

---

Top Contributors

[![brickheadz](https://avatars.githubusercontent.com/u/8155061?v=4)](https://github.com/brickheadz "brickheadz (13 commits)")[![arjunadeltoso](https://avatars.githubusercontent.com/u/449983?v=4)](https://github.com/arjunadeltoso "arjunadeltoso (2 commits)")

---

Tags

php

### Embed Badge

![Health badge](/badges/brickheadz-php-nomorebounce/health.svg)

```
[![Health](https://phpackages.com/badges/brickheadz-php-nomorebounce/health.svg)](https://phpackages.com/packages/brickheadz-php-nomorebounce)
```

PHPackages © 2026

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