linkstreet / laravel-sms by vigneshgurusamy

Package to support multi SMS gateway providers
3,076
3
5
Package Data
Maintainer Username: vigneshgurusamy
Maintainer Contact: vignesh@linkstreet.in (Vignesh Gurusamy)
Package Create Date: 2016-02-02
Package Last Update: 2024-01-16
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:00:58
Package Statistics
Total Downloads: 3,076
Monthly Downloads: 27
Daily Downloads: 0
Total Stars: 3
Total Watchers: 5
Total Forks: 0
Total Open Issues: 0

Laravel SMS


Build Status Code Coverage Latest Version on Packagist Total Downloads Software License

Installation

To install this package you will need:

  • Laravel >= 5.7
  • PHP 7.2+

Run this command to install via composer

composer require linkstreet/laravel-sms

or edit the composer.json

"require": {
    "linkstreet/laravel-sms": "^4.0"
}

Then run composer update in your terminal to pull the package.

Now all you have to do is to add the service provider of the package and alias the packages. To do open your app/config/app.php file.

Add a new line to the providers array

Linkstreet\LaravelSms\Providers\SmsServiceProvider::class

Finally add a line to aliases array

'SMS' => Linkstreet\LaravelSms\Facades\Sms::class,

Run this command to publish package configuration in config folder

php artisan vendor:publish --provider='Linkstreet\LaravelSms\Providers\SmsServiceProvider'

Supported SMS gateway providers

Coming Soon

  • Docs
  • Changelog
  • Examples

License

The MIT License (MIT). Please see License File for more information.