PHPackages                             tomdewit/skymobile - 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. tomdewit/skymobile

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

tomdewit/skymobile
==================

Skymobile notification channel for Laravel 5.5

1.0.0(8y ago)0431MITPHPPHP &gt;=7.1

Since Sep 26Pushed 8y ago1 watchersCompare

[ Source](https://github.com/ttomdewit/skymobile)[ Packagist](https://packagist.org/packages/tomdewit/skymobile)[ Docs](https://github.com/tomdewit/skymobile)[ RSS](/packages/tomdewit-skymobile/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (6)Versions (2)Used By (0)

Skymobile notifications channel for Laravel 5.
==============================================

[](#skymobile-notifications-channel-for-laravel-5)

This package makes it easy to send Skymobile SMS notifications with Laravel 5.5.

**Please note that the current documentation is out-of-sync with the package.**

**Full credit to [Peter Steenbergen](http://petericebear.github.io) for his original work on [Messagebird](https://github.com/laravel-notification-channels/messagebird).**

Contents
--------

[](#contents)

- [Requirements](#requirements)
- [Installation](#installation)
- [Setting up your Skymobile account](#setting-up-your-skymobile-account)
- [Usage](#usage)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#requirements)

You need a registered account with Skymobile since they don't accept new users.

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

[](#installation)

You can install the package via composer:

```
composer require tomdewit/skymobile
```

You may install the service provider:

```
// config/app.php
'providers' => [
    ...
    Tomdewit\Skymobile\SkymobileServiceProvider::class,
],
```

Setting up your Skymobile account
---------------------------------

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

Add your Skymobile Access Key, Default originator (name or number of sender), and default recipients to your `config/services.php`:

```
// config/services.php
...
'Skymobile' => [
    'access_key' => env('Skymobile_ACCESS_KEY'),
    'originator' => env('Skymobile_ORIGINATOR'),
    'recipients' => env('Skymobile_RECIPIENTS'),
],
...
```

Notice: The originator can contain a maximum of 11 alfa-numeric characters.

Usage
-----

[](#usage)

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

```
use Tomdewit\Skymobile\SkymobileChannel;
use Tomdewit\Skymobile\SkymobileMessage;
use Illuminate\Notifications\Notification;

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

    public function toSkymobile($notifiable)
    {
        return (new SkymobileMessage("Your {$notifiable->service} was ordered!"));
    }
}
```

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)

- [Tom de Wit](http://tomdewit.com)
- [Peter Steenbergen](http://petericebear.github.io)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

3199d ago

### Community

Maintainers

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

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/tomdewit-skymobile/health.svg)

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

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k95.4M284](/packages/laravel-horizon)[spatie/laravel-health

Monitor the health of a Laravel application

87511.3M155](/packages/spatie-laravel-health)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M123](/packages/roots-acorn)[illuminate/notifications

The Illuminate Notifications package.

513.1M1.1k](/packages/illuminate-notifications)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2401.4M14](/packages/laravel-notification-channels-discord)

PHPackages © 2026

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