Package Data | |
---|---|
Maintainer Username: | vigneshgurusamy |
Maintainer Contact: | vignesh@linkstreet.in (Vignesh Gurusamy) |
Package Create Date: | 2016-02-02 |
Package Last Update: | 2024-11-22 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:24:07 |
Package Statistics | |
---|---|
Total Downloads: | 3,319 |
Monthly Downloads: | 38 |
Daily Downloads: | 3 |
Total Stars: | 3 |
Total Watchers: | 5 |
Total Forks: | 0 |
Total Open Issues: | 0 |
To install this package you will need:
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'
The MIT License (MIT). Please see License File for more information.