PHPackages                             fortifycode/full-sms - 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. [API Development](/categories/api)
4. /
5. fortifycode/full-sms

ActiveLibrary[API Development](/categories/api)

fortifycode/full-sms
====================

SMS Service that enclose Nexmo, Twilio and WhatsApp for Laravel

19[1 issues](https://github.com/FortifyCode/full-sms/issues)PHP

Since Jul 7Pushed 10y ago2 watchersCompare

[ Source](https://github.com/FortifyCode/full-sms)[ Packagist](https://packagist.org/packages/fortifycode/full-sms)[ RSS](/packages/fortifycode-full-sms/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (2)Used By (0)

Full SMS Service
================

[](#full-sms-service)

SMS Service that enclose Nexmo, Twilio and WhatsApp messaging for Laravel

Description
-----------

[](#description)

This project allows you to have a centralized and easy way to use SMS messaging services in Laravel 5 projects.

Status
------

[](#status)

This first version will allow you to send and receive SMS using Nexmo and Twilio.
Soon releases will use the rest of the API features and will include WhatsApp.

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

[](#installation)

```
composer require fortifycode/full-sms

```

Setup
-----

[](#setup)

Modify the file `config/app` to include the provider in the list:

```
'providers' => [
// ...
    'FortifyCode\FullSms\FullSmsServiceProvider',
// ...
],

```

Then publish the configuration file to your local configuration directory:

```
php artisan vendor:publish

```

Now you should enter your API account information in the config file and choose which provider will be the default provider to use

```
return array(
    'default_provider' => 'twilio',
    'provider_aliases' => [
        'twilio' => 'FortifyCode\FullSms\Providers\TwilioSmsProvider',
        'nexmo' => 'FortifyCode\FullSms\Providers\NexmoSmsProvider',
    ],
    'twilio' => [
        'sid' => '',
        'token' => '',
        'default_number' => '',
    ],
    'nexmo' => [
        'api_key' => '',
        'api_secret' => '',
        'default_number' => '',
    ],
);

```

Usage
-----

[](#usage)

Now you can use the factory to retrieve the corresponding provider:

```
use FortifyCode\FullSms\MessageSenderFactory;

class MyClass {

    public function do_something() {
        // This one gets the default sender according to the configuration
        $default_sender =  MessageSenderFactory::make();

        // Using a specific sender using the alias from the configuration
        $nexmo_sender =  MessageSenderFactory::make('nexmo');
    }

}

```

Using this way you could choose which provider to use based on the user's configuration or any other parameter.
You can also change the aliases as you need or add more aliases.

Author
======

[](#author)

Nestor Mata Cuthbert

License
=======

[](#license)

MIT

###  Health Score

16

—

LowBetter than 4% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity43

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1775687?v=4)[Nestor Mata Cuthbert](/maintainers/nestormata)[@nestormata](https://github.com/nestormata)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/fortifycode-full-sms/health.svg)

```
[![Health](https://phpackages.com/badges/fortifycode-full-sms/health.svg)](https://phpackages.com/packages/fortifycode-full-sms)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k13](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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