Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 594 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 594 Bytes

Laravel and Twilio Integration

Twilio Integration for Laravel

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,