PHPackages                             laravel-notification-channels/jusibe - 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. laravel-notification-channels/jusibe

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

laravel-notification-channels/jusibe
====================================

Jusibe SMS Channel for Laravel 5.3

1.1.0(6y ago)816.3k6[1 issues](https://github.com/laravel-notification-channels/jusibe/issues)MITPHPPHP &gt;=7.2CI failing

Since Aug 14Pushed 6y ago2 watchersCompare

[ Source](https://github.com/laravel-notification-channels/jusibe)[ Packagist](https://packagist.org/packages/laravel-notification-channels/jusibe)[ Docs](https://github.com/laravel-notification-channels/jusibe)[ RSS](/packages/laravel-notification-channels-jusibe/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (3)Dependencies (7)Versions (5)Used By (0)

Jusibe notifications channel for Laravel
========================================

[](#jusibe-notifications-channel-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3c4d1f2ab7fe429c8d90608b0ef9dcc6db39007aef8973d33a36778effab123a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/jusibe)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![StyleCI](https://camo.githubusercontent.com/b3509b6f2bac59a9fafb23c11f030ca3167580dee441b7b2e05abd35a738b11d/68747470733a2f2f7374796c6563692e696f2f7265706f732f36353637333231362f736869656c64)](https://styleci.io/repos/65673216)[![Build Status](https://camo.githubusercontent.com/51749fdd83b2ab53774d1cb330e4fad5d987fa479bddc86108a8a14d9a9ed907/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-notification-channels/jusibe)[![Quality Score](https://camo.githubusercontent.com/f7ba760ee7cd5da50123e4dd7a2ce82a79ff1af44ec4f7e025586242d7d5fbfa/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/jusibe)[![Code Coverage](https://camo.githubusercontent.com/80a9cc45cac9559b16469f79124487c51b5c6a5b92f5a9fd9ba6dcee937d701c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6a75736962652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/jusibe/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/f55806cda72f5b00be87dc08ff6ce32d055f42e1c2208f25a82935142f5d7d4d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/jusibe)

This package makes it easy to send [Jusibe notifications](https://jusibe.com/docs/) with Laravel 5.5+, 6.x, &amp; 7.x.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up your Jusibe account](#setting-up-your-jusibe-account)
- [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 laravel-notification-channels/jusibe
```

You must install the service provider:

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

### Setting up your Jusibe account

[](#setting-up-your-jusibe-account)

Add your Jusibe Account Key, Acess Token, and From Number (optional) to your `config/services.php`:

```
// config/services.php
...
'jusibe' => [
    'key' => env('JUSIBE_PUBLIC_KEY'),
    'token' => env('JUSIBE_ACCESS_TOKEN'),
    'sms_from' => 'PROSPER'
],
...
```

Usage
-----

[](#usage)

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

```
use NotificationChannels\Jusibe\JusibeChannel;
use NotificationChannels\Jusibe\JusibeMessage;
use Illuminate\Notifications\Notification;

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

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

In order to let your Notification know which phone number you are sending to, add the `routeNotificationForJusibe` method to your Notifiable model e.g your User Model

```
public function routeNotificationForJusibe()
{
    return $this->phone; // where `phone` is a field in your users table;
}
```

### Available Message methods

[](#available-message-methods)

#### JusibeMessage

[](#jusibemessage)

- `from('')`: Accepts a phone to use as the notification sender.
- `content('')`: Accepts a string value for the notification body.

Changelog
---------

[](#changelog)

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

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

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

[](#contributing)

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

Credits
-------

[](#credits)

- [Prosper Otemuyiwa](https://github.com/unicodeveloper)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~675 days

Total

3

Last Release

2257d ago

Major Versions

0.0.1 → 1.0.02019-11-12

PHP version history (3 changes)0.0.1PHP &gt;=5.6.4

1.0.0PHP &gt;=7.0

1.1.0PHP &gt;=7.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/20937037?v=4)[Laravel Notification Channels](/maintainers/laravel-notification-channels)[@laravel-notification-channels](https://github.com/laravel-notification-channels)

---

Top Contributors

[![freekmurze](https://avatars.githubusercontent.com/u/483853?v=4)](https://github.com/freekmurze "freekmurze (9 commits)")[![unicodeveloper](https://avatars.githubusercontent.com/u/2946769?v=4)](https://github.com/unicodeveloper "unicodeveloper (7 commits)")[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (3 commits)")[![themsaid](https://avatars.githubusercontent.com/u/4332182?v=4)](https://github.com/themsaid "themsaid (2 commits)")[![JayBizzle](https://avatars.githubusercontent.com/u/340752?v=4)](https://github.com/JayBizzle "JayBizzle (1 commits)")[![mpociot](https://avatars.githubusercontent.com/u/804684?v=4)](https://github.com/mpociot "mpociot (1 commits)")[![oyed](https://avatars.githubusercontent.com/u/172114265?v=4)](https://github.com/oyed "oyed (1 commits)")[![casperboone](https://avatars.githubusercontent.com/u/15815208?v=4)](https://github.com/casperboone "casperboone (1 commits)")

---

Tags

channelsemailjusibejusibe-notificationslaravelmessagingnotification-channelnotificationsphonesms

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/laravel-notification-channels-jusibe/health.svg)

```
[![Health](https://phpackages.com/badges/laravel-notification-channels-jusibe/health.svg)](https://phpackages.com/packages/laravel-notification-channels-jusibe)
```

###  Alternatives

[laravel-notification-channels/webpush

Web Push Notifications driver for Laravel.

8985.1M26](/packages/laravel-notification-channels-webpush)[spatie/laravel-health

Monitor the health of a Laravel application

87511.3M154](/packages/spatie-laravel-health)[laravel-notification-channels/apn

Apple APN Push Notification Channel

2022.1M6](/packages/laravel-notification-channels-apn)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4079.7M1](/packages/s-ichikawa-laravel-sendgrid-driver)[illuminate/mail

The Illuminate Mail package.

5910.6M476](/packages/illuminate-mail)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1613.2M11](/packages/laravel-notification-channels-microsoft-teams)

PHPackages © 2026

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