PHPackages                             andersevenrud/laravel-frontsms - 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. andersevenrud/laravel-frontsms

ActiveLibrary

andersevenrud/laravel-frontsms
==============================

Laravel Front SMS Provider(s)

0.6.1(8y ago)0351MITPHPPHP &gt;=5.6.4

Since Jun 23Pushed 8y ago1 watchersCompare

[ Source](https://github.com/andersevenrud/laravel-frontsms)[ Packagist](https://packagist.org/packages/andersevenrud/laravel-frontsms)[ RSS](/packages/andersevenrud-laravel-frontsms/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (3)Used By (0)

Laravel Front SMS Provider(s)
=============================

[](#laravel-front-sms-providers)

Easy SMS with [Front](http://fro.no/).

Contains Notification Channel, Service Provider and a Facade.

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

[](#installation)

```
$ composer require andersevenrud/laravel-frontsms

```

Configuration
-------------

[](#configuration)

In `config/app.php`:

```

'providers' => [
    Laravel\FrontSMS\FrontSMSServiceProvider::class,
],

'aliases' => [
  'FrontSMS' => Laravel\FrontSMS\Facades\FrontSMS::class
]

```

Then publish configurations:

```
$ php artisan vendor:publish

```

You now have `config/frontsms.php`.

Usage
-----

[](#usage)

### General

[](#general)

```
use FrontSMS;

function something() {

  $result = FrontSMS::send(12345678, 'hello world!');

}
```

### Notifications

[](#notifications)

```
use NotificationChannels\FrontSMS\FrontSMSChannel;
use NotificationChannels\FrontSMS\FrontSMSMessage;
use Illuminate\Notifications\Notification;

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

    public function toFront($notifiable)
    {
        return FrontSMSMessage::create('12345678', 'Hello world!');
    }
}
```

Changelog
---------

[](#changelog)

- **0.6.1** - Updated composer.json
- **0.6.0** - Initial release

License
-------

[](#license)

MIT

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity49

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

3245d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3200ed83a49f1cdef1b8422276fb01e36ba3063879bd73734a5941cb26c38e01?d=identicon)[andersevenrud](/maintainers/andersevenrud)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/andersevenrud-laravel-frontsms/health.svg)

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

PHPackages © 2026

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