Looking to hire Laravel developers? Try LaraJobs

laravel-twilio maintained by coloredcow

Description
Twilio Integration for Laravel
Author
Last update
2018/05/26 12:47 (dev-master)
License
Downloads
46

Comments
comments powered by Disqus

Laravel and Twilio Integration

Quickly add the ability to send SMS from your laravel applications using Twilio service.

Installation

Require this package in your composer.json and update composer.

"coloredcow/laravel-twilio": "1.0.*"

After updating composer, add the ServiceProvider to the providers array in config/app.php

ColoredCow\Twilio\Providers\SmsServiceProvider::class,
ColoredCow\Twilio\Providers\VoiceServiceProvider::class,

You can use the facade for shorter code. Add this to your aliases:

'Sms' => ColoredCow\Twilio\Facades\Sms::class,
'Voice' => ColoredCow\Twilio\Facades\Voice::class,