LaravelPackages.net
Acme Inc.
Toggle sidebar
santhoshkorukonda/laratext

Developer friendly library to send SMS using msg91 sms gateway.

16
1
About santhoshkorukonda/laratext

santhoshkorukonda/laratext is a Laravel package for developer friendly library to send sms using msg91 sms gateway.. It currently has 1 GitHub stars and 16 downloads on Packagist. Install it with composer require santhoshkorukonda/laratext. Discover more Laravel packages by santhoshkorukonda or browse all Laravel packages to compare alternatives.

Last updated

LaraText

Developer friendly Laravel package to text using msg91 sms gateway.

Getting Started

Install the latest version of the package with composer require santhoshkorukonda/laratext

Prerequisites

  1. requires php >= 5.6.4
  2. requires php ext-curl
  3. requires monolog/log

Installation

Detailed installation and configuration procedure of the package.

Add santhoshkorukonda/laratext package to your composer.json file

{
    "require": {
        "santoshkorukonda/laratext": "0.1",
    },
}

Update composer with

composer update

Add LaraTextServiceProvider to config/app.php

<?php

return [
    'providers' => [
        SantoshKorukonda\LaraText\LaraTextServiceProvider::class,
    ],
];

Add LaraTextFacade to config/app.php

<?php

return [
    'aliases' => [
        SantoshKorukonda\LaraText\LaraTextFacade::class,
    ],
];

Publish LaraText configuration file

php artisan vendor:publish

Quick Start

Sending an SMS is simple and easy. Call sms($phone, $message) function from anywhere of your application to text the message.

License

This package is licensed under the MIT License - see the LICENSE.md file for details.

Star History Chart