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 6y 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 3w 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 41% 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

2257d 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

[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M167](/packages/spatie-laravel-health)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M131](/packages/roots-acorn)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2588.4M17](/packages/laravel-notification-channels-twilio)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2401.4M17](/packages/laravel-notification-channels-discord)[laravel-notification-channels/pusher-push-notifications

Pusher native Push Notifications driver.

281788.6k1](/packages/laravel-notification-channels-pusher-push-notifications)[fleetbase/core-api

Core Framework and Resources for Fleetbase API

1235.9k20](/packages/fleetbase-core-api)

PHPackages © 2026

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