PHPackages                             alitvinov/laravel-mobizon - 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. alitvinov/laravel-mobizon

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

alitvinov/laravel-mobizon
=========================

Mobizon SMS notifications driver for Laravel

v1.05(6y ago)0192MITPHPPHP ^7.2.5

Since Jan 4Pushed 5y agoCompare

[ Source](https://github.com/alitvinov/laravel-mobizon)[ Packagist](https://packagist.org/packages/alitvinov/laravel-mobizon)[ Docs](https://github.com/laraketai/mobizon)[ RSS](/packages/alitvinov-laravel-mobizon/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (7)Versions (7)Used By (0)

Mobizon notifications channel for Laravel
=========================================

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

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

[](#installation)

Install via composer:

```
composer require Alitvinov/LaravelMobizon

```

### Setting up your Mobizon service

[](#setting-up-your-mobizon-service)

Add your Mobizon credentials to `config/services.php` – a common file to store third-party service credentials.

```
// config/services.php
...
'mobizon' => [
    'domain' => '',
    'secret' => '',
    'alphaname' => null,
],
```

Usage
-----

[](#usage)

The package provides a new channel that can be used in your notification class like the following:

```
use Illuminate\Notifications\Notification;
use Alitvinov\LaravelMobizon\MobizonChannel;
use Alitvinov\LaravelMobizon\MobizonMessage;

public function via($notifiable)
{
    return [MobizonChannel::class];
}

public function toMobizon($notifiable)
{
    return MobizonMessage::create("Your SMS message");
}
```

Add a `routeNotificationForMobizon` method to your Notifiable model to return the phone number:

```
public function routeNotificationForMobizon()
{
    //Phone number without symbols or spaces
    return $this->phone_number;
}
```

Credits
-------

[](#credits)

Thanks to [laraketai](https://github.com/laraketai) for the original package.

License
-------

[](#license)

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

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

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

Total

6

Last Release

2204d ago

PHP version history (3 changes)v1.0PHP &gt;=5.3.3

v1.04PHP ^7.2

v1.05PHP ^7.2.5

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/28457398?v=4)[Alex Litvinov](/maintainers/alitvinov)[@alitvinov](https://github.com/alitvinov)

---

Top Contributors

[![alitvinov-old](https://avatars.githubusercontent.com/u/986230?v=4)](https://github.com/alitvinov-old "alitvinov-old (3 commits)")

---

Tags

phplaravelnotificationssmsmobizon

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/alitvinov-laravel-mobizon/health.svg)

```
[![Health](https://phpackages.com/badges/alitvinov-laravel-mobizon/health.svg)](https://phpackages.com/packages/alitvinov-laravel-mobizon)
```

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[s-ichikawa/laravel-sendgrid-driver

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

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[gr8shivam/laravel-sms-api

A modern, flexible Laravel package for integrating any SMS gateway with REST API support

10138.4k](/packages/gr8shivam-laravel-sms-api)

PHPackages © 2026

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