PHPackages                             nickmel/laravel-smsto - 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. nickmel/laravel-smsto

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

nickmel/laravel-smsto
=====================

A Laravel package to hook up to the SMS.to REST API

1.1.0(6y ago)0241MITPHPPHP &gt;=7.1.3

Since Aug 13Pushed 6y ago1 watchersCompare

[ Source](https://github.com/literaln/laravel-smsto)[ Packagist](https://packagist.org/packages/nickmel/laravel-smsto)[ RSS](/packages/nickmel-laravel-smsto/feed)WikiDiscussions master Synced 2d ago

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

[![Latest Stable Version](https://camo.githubusercontent.com/e86f567cf3dc343cc1337528b73a7b78110e7aad275c0a6d445b19553fdb90ce/68747470733a2f2f706f7365722e707567782e6f72672f6e69636b6d656c2f6c61726176656c2d736d73746f2f762f737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/nickmel/laravel-smsto)[![Build Status](https://camo.githubusercontent.com/263f6c623556e886b968fd5f7912cb620f092c6bc5fc361cf884ff8dbcb6d2ba/68747470733a2f2f7472617669732d63692e6f72672f6c69746572616c6e2f6c61726176656c2d736d73746f2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/literaln/laravel-smsto)[![License](https://camo.githubusercontent.com/26e4d871a09ee1e317e25c87ab1b7f98cb2cf81d36636f1c4d75d440f4fdfbd6/68747470733a2f2f706f7365722e707567782e6f72672f6e69636b6d656c2f6c61726176656c2d736d73746f2f6c6963656e73653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/nickmel/laravel-smsto)[![Total Downloads](https://camo.githubusercontent.com/aa004b1aa8c34b4f7299dafc36f8e1001109b2b935a27ff148b84cf073e05904/68747470733a2f2f706f7365722e707567782e6f72672f6e69636b6d656c2f6c61726176656c2d736d73746f2f646f776e6c6f6164733f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/nickmel/laravel-smsto)

SMS.to library for Laravel 5.8
------------------------------

[](#smsto-library-for-laravel-58)

Laravel package to provide integration with SMS.to REST API. Visit  to create an account and obtain API credentials.

### Installation

[](#installation)

Install this package with composer:

```
composer require nickmel/laravel-smsto

```

Add the provider to the `providers` array in `config/app.php` file

```
'Nickmel/SMSTo/SMSToServiceProvider',
```

and the facade in the `aliases` array in `config/app.php` file

```
'SMSTo' => 'Nickmel/SMSTo/SMSToFacade',
```

Copy the config files for the API

```
php artisan vendor:publish --tag="laravel-sms-to"

```

### Usage

[](#usage)

To configure the API, either set the variables in the `.env` file or edit the published `config/laravel-sms-to.php` file directly.

---

##### Get Account Balance

[](#get-account-balance)

```
SMSTo::getBalance();
```

##### Send single SMS

[](#send-single-sms)

```
$messages = [
    [
        'to' => '+357xxxxxxxx',
        'message' => 'An SMS message'
    ]
];

$senderId = 'SENDERID';

SMSTo::sendSingle($messages, $senderId);
```

##### Send multiple SMS

[](#send-multiple-sms)

```
$recipients = ['+357xxxxxxxx', '+357yyyyyyyy'];

$message = 'An SMS message';

$senderId = 'SENDERID';

SMSTo::sendMultiple($message, $recipients, $senderId);
```

##### Using the Notification channel

[](#using-the-notification-channel)

```
Notifications in Laravel can be send to custom channels.
```

---

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity57

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

Total

6

Last Release

2447d ago

Major Versions

v0.1.0 → 1.0.32019-08-31

### Community

Maintainers

![](https://www.gravatar.com/avatar/6556f08a11d529d9b9f90c3b0bcde301a95090ee7eab23f7b9b5e69c6de40fb8?d=identicon)[literaln](/maintainers/literaln)

---

Top Contributors

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

---

Tags

apilaravelrestnotificationssmsmarketing

### Embed Badge

![Health badge](/badges/nickmel-laravel-smsto/health.svg)

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

###  Alternatives

[lomkit/laravel-rest-api

A package to build quick and robust rest api for the Laravel framework.

59152.2k](/packages/lomkit-laravel-rest-api)[francescomalatesta/laravel-api-boilerplate-jwt

An API Boilerplate to create a ready-to-use REST API in seconds.

1.2k7.5k](/packages/francescomalatesta-laravel-api-boilerplate-jwt)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[cybercog/youtrack-rest-php

YouTrack REST API PHP Client.

37149.2k3](/packages/cybercog-youtrack-rest-php)[dreamfactory/df-core

DreamFactory(tm) Core Components

1651.7k20](/packages/dreamfactory-df-core)[xtend-packages/rest-presenter

REST API Presenter &amp; Generator for Laravel

771.5k](/packages/xtend-packages-rest-presenter)

PHPackages © 2026

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