PHPackages                             colling-media/laravel-zipwhip-notification-channel - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. colling-media/laravel-zipwhip-notification-channel

AbandonedLibrary[Mail &amp; Notifications](/categories/mail)

colling-media/laravel-zipwhip-notification-channel
==================================================

ZipWhip notifications driver

v1.0.2(9y ago)0235[1 PRs](https://github.com/Colling-Media/Laravel-ZipWhip-Notification-Channel/pulls)MITPHPPHP &gt;=5.6.4

Since Aug 18Pushed 6y ago2 watchersCompare

[ Source](https://github.com/Colling-Media/Laravel-ZipWhip-Notification-Channel)[ Packagist](https://packagist.org/packages/colling-media/laravel-zipwhip-notification-channel)[ Docs](https://github.com/Colling-Media/Laravel-ZipWhip-Notification-Channel)[ RSS](/packages/colling-media-laravel-zipwhip-notification-channel/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (4)Dependencies (6)Versions (4)Used By (0)

ZipWhip notifications channel for Laravel 5.3
=============================================

[](#zipwhip-notifications-channel-for-laravel-53)

This package makes it easy to send notifications using [zipwhip.com](https://www.zipwhip.com/) with Laravel 5.3.

THIS IS A MODIFIED VERSION OF THE [laravel-notification-channels/clickatell](https://github.com/laravel-notification-channels/clickatell) PACKAGE. ALL MAIN CREDIT GOES TO THEM, THIS IS JUST A MODIFICATION TO MAKE IT WORK WITH ZIPWHIP.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the ZipWhip service](#setting-up-the-zipwhip-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install the package via composer:

```
composer require colling-media/laravel-zipwhip-notification-channel
```

You must install the service provider:

```
// config/app.php
'providers' => [
    ...
    NotificationChannels\ZipWhip\ZipWhipServiceProvider::class,
],
```

### Setting up the ZipWhip service

[](#setting-up-the-zipwhip-service)

Add your ZipWhip user and password to your `config/services.php`:

```
// config/services.php
...
'zipwhip' => [
    'user'  => env('ZIPWHIP_USER'),
    'pass' => env('ZIPWHIP_PASS'),
],
...
```

Usage
-----

[](#usage)

You can use the channel in your `via()` method inside the notification:

```
use Illuminate\Notifications\Notification;
use NotificationChannels\ZipWhip\ZipWhipMessage;
use NotificationChannels\ZipWhip\ZipWhipChannel;

class AccountApproved extends Notification
{
    public function via($notifiable)
    {
        return [ZipWhipChannel::class];
    }

    public function toZipWhip($notifiable)
    {
        return (new ZipWhipMessage())
            ->content("Your {$notifiable->service} account was approved!");
    }
}
```

### Available methods

[](#available-methods)

TODO

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [laravel-notification-channels/clickatell](https://github.com/laravel-notification-channels/clickatell) INITIAL LIBRARY - See them for full credits

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~101 days

Total

3

Last Release

3402d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/093f0f4c952fb410a2324eb9acfa28d8a9bd44ed9158bce0b336fec77a674820?d=identicon)[brianclogan](/maintainers/brianclogan)

---

Top Contributors

[![brianclogan](https://avatars.githubusercontent.com/u/9066551?v=4)](https://github.com/brianclogan "brianclogan (11 commits)")

---

Tags

laravelnotificationssmszipwhip

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/colling-media-laravel-zipwhip-notification-channel/health.svg)

```
[![Health](https://phpackages.com/badges/colling-media-laravel-zipwhip-notification-channel/health.svg)](https://phpackages.com/packages/colling-media-laravel-zipwhip-notification-channel)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2588.4M17](/packages/laravel-notification-channels-twilio)[laravel-notification-channels/pusher-push-notifications

Pusher native Push Notifications driver.

281788.6k1](/packages/laravel-notification-channels-pusher-push-notifications)[laravel-notification-channels/apn

Apple APN Push Notification Channel

2022.2M8](/packages/laravel-notification-channels-apn)

PHPackages © 2026

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