PHPackages                             zhandos-prog/mobizon-sms-driver - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. zhandos-prog/mobizon-sms-driver

ActiveLibrary[HTTP &amp; Networking](/categories/http)

zhandos-prog/mobizon-sms-driver
===============================

Mobizon SMS driver package for tzsk/sms

0.2.0(3y ago)013MITPHPPHP ^8.0

Since Mar 3Pushed 3y ago1 watchersCompare

[ Source](https://github.com/genov8/mobizon-sms-driver)[ Packagist](https://packagist.org/packages/zhandos-prog/mobizon-sms-driver)[ RSS](/packages/zhandos-prog-mobizon-sms-driver/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Mobizon SMS Driver for [Laravel SMS Gateway](https://github.com/tzsk/sms)
=========================================================================

[](#mobizon-sms-driver-for-laravel-sms-gateway)

- [Requirements](#requirements)
- [Features](#features)
- [Installation](#installation)
- [Configure](#configure)
- [Usage](#usage)
- [Exceptions](#exceptions)

Requirements
------------

[](#requirements)

- PHP &gt;= 8.0
- [Laravel SMS Gateway](https://github.com/tzsk/sms)

Features
--------

[](#features)

- \[✓\] Send sms single
- \[✓\] Send sms mass

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

[](#installation)

```
composer require zhandos-prog/mobizon-sms-driver
```

Configure
---------

[](#configure)

Publish the config file

```
$ php artisan sms:publish
```

In the config file you can set the default driver to use for all your SMS. But you can also change the driver at runtime.

Choose what gateway you would like to use for your application. Then make that as default driver so that you don't have to specify that everywhere. But, you can also use multiple gateways in a project.

#### Path config file: app/config/sms.php

[](#path-config-file-appconfigsmsphp)

```
// Eg. if you want to use MobizonSmsDriver.
'default' => 'smsmobizon',
```

Then fill the credentials for that gateway in the `drivers` array.

```
// Eg. for MobizonSmsDriver.
'drivers' => [
    'smsmobizon' => [
        // Fill all the credentials here.
        'apiKey' => 'Your Api Key',
        'from' => 'Your Mobizon Sender ID',
        'url' => 'Your Url Api'
    ],
    ...
]
```

Сlass MobizonSmsDriver needs to be mapped specify it in the `map` section

```
// Eg. for MobizonSmsDriver.
'map' => [
    ...
    'smsmobizon' => ZhandosProg\MobizonSmsDriver\Driver\MobizonDriver::class,
]
```

Register a service provider

#### Path config file: app/config/app.php

[](#path-config-file-appconfigappphp)

```
// Eg. for MobizonSmsDriver.
'providers' => [
    ...
    ZhandosProg\MobizonSmsDriver\MobizonServiceProvider::class,
]
```

Usage
-----

[](#usage)

In your code just use it like this.

```
use ZhandosProg\MobizonSmsDriver\MobizonSenderSMSInterface;

Class ExampleController {

    private MobizonSenderSMSInterface $mobizonSenderSMS;

    public function __construct(MobizonSenderSMSInterface $mobizonSenderSMS)
    {
        $this->mobizonSenderSMS = $mobizonSenderSMS
    }

    public function single()
    {
        /// ... your logic

        $response = $this->mobizonSenderSMS->send('77779998877', '42')
        dd($response);

        /// ... your logic
    }

    public function mass()
    {
        /// ... your logic

        $response = $this->mobizonSenderSMS->send(['77773335566','87774444242'], '42')
        dd($response);

        /// ... your logic
    }
}
```

You can also use a package facade [Laravel SMS Gateway](https://github.com/tzsk/sms). All details in **Usage** section!

#### if you use a facade [Laravel SMS Gateway](https://github.com/tzsk/sms), then registering the service provider is not necessary!

[](#if-you-use-a-facade-laravel-sms-gateway-then-registering-the-service-provider-is-not-necessary)

Exceptions
----------

[](#exceptions)

- `PhoneNumberValidationException`

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

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

Total

2

Last Release

1220d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0c5b7ef3869513938b8dc1801671539a1dcf8a932935ac516f3cc54ed04f10e9?d=identicon)[Genov8](/maintainers/Genov8)

---

Top Contributors

[![genov8](https://avatars.githubusercontent.com/u/60063310?v=4)](https://github.com/genov8 "genov8 (16 commits)")

---

Tags

smsmobizonLaravel SMS DriverMobizon SMS Provider

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/zhandos-prog-mobizon-sms-driver/health.svg)

```
[![Health](https://phpackages.com/badges/zhandos-prog-mobizon-sms-driver/health.svg)](https://phpackages.com/packages/zhandos-prog-mobizon-sms-driver)
```

###  Alternatives

[infobip/infobip-api-php-client

PHP library for consuming Infobip's API

961.9M10](/packages/infobip-infobip-api-php-client)[esendex/sdk

Send SMS from your application using the Esendex API

22989.1k5](/packages/esendex-sdk)[mediaburst/clockworksms

ClockworkSMS, International SMS API

45157.4k4](/packages/mediaburst-clockworksms)[ismaeltoe/osms

PHP library wrapper of the Orange SMS API.

4640.8k](/packages/ismaeltoe-osms)[greensms/greensms

GREENSMS API: SMS, WhatsApp, Viber, VK, Voice, Call, HLR

2634.3k](/packages/greensms-greensms)[minchao/every8d-php

A EVERY8D SMS SDK for PHP (Unofficial)

1342.8k1](/packages/minchao-every8d-php)

PHPackages © 2026

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