PHPackages                             zanozik/semysms - 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. zanozik/semysms

ActiveLibrary

zanozik/semysms
===============

SemySMS Notifications Channel for Laravel

v0.1(9y ago)28242[1 PRs](https://github.com/zanozik/semysms/pulls)MITPHPPHP &gt;=5.6.4

Since Feb 6Pushed 4y ago1 watchersCompare

[ Source](https://github.com/zanozik/semysms)[ Packagist](https://packagist.org/packages/zanozik/semysms)[ Docs](https://github.com/zanozik/semysms)[ RSS](/packages/zanozik-semysms/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

SemySMS Notifications Channel
=============================

[](#semysms-notifications-channel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/cce9c03fe9cdeb88626b4de758f598ad79cd3e9a7d36d2f5b4ca611d97eb4302/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7a616e6f7a696b2f73656d79736d732e737667)](https://packagist.org/packages/zanozik/semysms)[![Software License](https://camo.githubusercontent.com/074b89bca64d3edc93a1db6c7e3b1636b874540ba91d66367c0e5e354c56d0ea/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e737667)](LICENSE)

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

[](#installation)

You can install the package via composer:

```
composer require zanozik/semysms
```

You must install the service provider:

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

### Setting up the SemySMS service

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

Sign up on [SemySMS](https://semysms.net) and create your token in your Control Panel -&gt; API.

Add the following section and fill in the details there (you can also use your .env file to store your credentials):

```
// config/services.php
...
'semysms' => [
    'token' => env('SEMYSMS_TOKEN', '12345678901234567890'),
    'device' => env('SEMYSMS_DEVICE', '12345')
],
...
```

Usage
-----

[](#usage)

You can now use the channel in your `via()` method inside the Notification class.

```
use NotificationChannels\SemySMS\SemySMSChannel;
use NotificationChannels\SemySMS\SemySMSMessage;
use Illuminate\Notifications\Notification;

class InvoicePaid extends Notification{

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

    public function toSmsGatewayMe($notifiable){
        return (new SemySMSMessage)->text('Your invoice has been paid');
    }
}
```

### Routing a message

[](#routing-a-message)

You should add a `routeNotificationForSemySMS()` method in your notifiable model:

```
...
/**
 * Route notifications for the SemySMS channel.
 *
 * @return int
 */
public function routeNotificationForSemySMS(){
    return $this->phone_number;
}
...
```

### Available methods

[](#available-methods)

- `text($text)`: (string) SMS Text.

License
-------

[](#license)

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

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

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

Unknown

Total

1

Last Release

3380d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a91c455571ad14453039b98434a37c16e6993f98988b4361cb4272db8b2419ee?d=identicon)[zanozik](/maintainers/zanozik)

---

Top Contributors

[![zanozik](https://avatars.githubusercontent.com/u/20815675?v=4)](https://github.com/zanozik "zanozik (10 commits)")

### Embed Badge

![Health badge](/badges/zanozik-semysms/health.svg)

```
[![Health](https://phpackages.com/badges/zanozik-semysms/health.svg)](https://phpackages.com/packages/zanozik-semysms)
```

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M83](/packages/spatie-laravel-health)[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)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[s-ichikawa/laravel-sendgrid-driver

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

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

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

PHPackages © 2026

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