PHPackages                             jigs1212/laravel-msg91 - 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. jigs1212/laravel-msg91

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

jigs1212/laravel-msg91
======================

Package for MSG91 sms API

07PHP

Since Jan 18Pushed 7y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

This is originally develeoped at [Robin C Samuel | laravel-msg91](https://github.com/robincsamuel/laravel-msg91). Modified to acheive my needs.

For this package Installation
=============================

[](#for-this-package-installation)

### Installation

[](#installation)

Installation via composer

Add `jigs1212/laravel-msg91` to your composer requirements:

```
"require": {
    "jigs1212/laravel-msg91": "dev-master"
}
```

Now run `composer update`

Once the package is installed, open your `app/config/app.php` configuration file and locate the `providers` key. Add the following line to the end:

```
Jigs1212\LaravelMsg91\LaravelMsg91ServiceProvider::class
```

Next, locate the `aliases` key and add the following line:

```
LaravelMsg91' => Jigs1212\LaravelMsg91\Facades\LaravelMsg91::class,
```

Put the credentials &amp; preferences in ENV with the keys `MSG91_KEY`, `MSG91_SENDER_ID`, `MSG91_ROUTE`, `MSG91_COUNTRY`. If you wan't to customize this, publish the default configuration which will create a config file `config/msg91.php`.

```
$ php artisan vendor:publish
```

##### [Usage](#usage) same as below.

[](#usage-same-as-below)

Laravel 5 Msg91 package
=======================

[](#laravel-5-msg91-package)

### About

[](#about)

MSG91 is a bulk SMS service provider offers transactional &amp; promotional bulk SMS solutions internationally. This package provide the text SMS &amp; SendOTP functionalities.

[Documentation - Text SMS](https://control.msg91.com/apidoc/textsms/send-sms.php)

[Documentation - sendOTP](https://control.msg91.com/apidoc/sendotp/send-otp.php)

### Registration

[](#registration)

[Sign up for Msg91](https://msg91.com/signup) and get the auth key from your account. You can find the `auth key` from `Dashboard > API` after signing in.

### Installation

[](#installation-1)

Installation via composer

Add `robincsamuel/laravel-msg91` to your composer requirements:

```
"require": {
    "robincsamuel/laravel-msg91": "dev-master"
}
```

Now run `composer update`

Once the package is installed, open your `app/config/app.php` configuration file and locate the `providers` key. Add the following line to the end:

```
RobinCSamuel\LaravelMsg91\LaravelMsg91ServiceProvider::class
```

Next, locate the `aliases` key and add the following line:

```
LaravelMsg91' => RobinCSamuel\LaravelMsg91\Facades\LaravelMsg91::class,
```

Put the credentials &amp; preferences in ENV with the keys `MSG91_KEY`, `MSG91_SENDER_ID`, `MSG91_ROUTE`, `MSG91_COUNTRY`. If you wan't to customize this, publish the default configuration which will create a config file `config/msg91.php`.

```
$ php artisan vendor:publish
```

### Usage

[](#usage)

1. Send an SMS to one or more numbers. See the package config file to set up API access.

    ```
    $result = LaravelMsg91::message(919090909090, 'This is a test message');

    $result = LaravelMsg91::message(array('919090909090', '919090909091'), 'This is a test message to multiple recepients');
    ```
2. Send OTP

    ```
    $result = LaravelMsg91::sendOtp(919090909090, 1290);

    $result = LaravelMsg91::sendOtp(919090909090, 1290, "Your otp for phone verification is 1290");
    ```
3. Resend OTP

    ```
    $result = LaravelMsg91::resendOtp(919090909090);

    $result = LaravelMsg91::resendOtp(919090909090, 'voice');
    ```
4. Verify OTP

    ```
    $result = LaravelMsg91::verifyOtp(919090909090, 1290); // returns true or false

    $result = LaravelMsg91::verifyOtp(919090909090, 1290, ['raw' => true]); // returns what msg91 replies (includes error message & type)
    ```

### License

[](#license)

The MIT License (MIT)

Copyright (c) 2017 Robin C Samuel

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

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/e30e4c0a9745b969905933c729ba2e423038ebe8f8b015601600ca660126d8ee?d=identicon)[jigs1212](/maintainers/jigs1212)

### Embed Badge

![Health badge](/badges/jigs1212-laravel-msg91/health.svg)

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

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[nyholm/psr7

A fast PHP7 implementation of PSR-7

1.3k235.4M2.4k](/packages/nyholm-psr7)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78126.4M414](/packages/react-http)

PHPackages © 2026

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