immortalvision / laravel-sms
Laravel SMS Service Provider
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/immortalvision/laravel-sms
Requires
- php: >=5.4.0
- illuminate/support: 5.0.x|5.1.x|5.2.x|5.3.x
README
Laravel-SMS
Laravel SMS Service Provider
Installation
Run the following command in your laravel directory:
composer require immortalvision/laravel-sms
Setup
- In
/config/app.php
, add the following toproviders
:
ImmortalVision\SMS\SmsServiceProvider::class,
and the following to aliases
:
'SMS' => ImmortalVision\SMS\Facades\SMS::class,
- Run
php artisan vendor:publish
. - Enter your api data in
/config/SMS.php
.