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 1mo ago

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 5% 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://www.gravatar.com/avatar/ce6f74e928eeabfd45b6da43be7afd06ef132aff03e4b0bd710b000d54b93863?d=identicon)[nestormata](/maintainers/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

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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