- simple wrapper for sending sms messages via twilio with Laravel4.
- calls or anything else other than sending sms messages is not currently supported (pull requests welcome)
-
add the following to your composer
require:"twilio/laratwilio": "dev-master" -
run from terminal:
composer update -
add Laratwilio to the list of providers. In
config/app.phpadd the following line to theprovidersarray:'Twilio\Laratwilio\LaratwilioServiceProvider' -
add a Facade for more convenient usage. In
config/app.phpadd the following line to thealiasesarray:'Sms' => 'Twilio\Laratwilio\Facades\Laratwilio' -
publish config files so that you can put your Twilio details in the right place. In your terminal:
php artisan config:publish twilio/laratwilio -
edit the new config file in the
config/packages/twilio/laratwilioand enter your data
Anywhere in your application when you need to send an sms message, just do:
Sms::send(array('to'=>'+12345678', 'text'=>'hello world'));
This is my first package and I'm very new to all this.
Most likely I'm doing lots of things wrong. Use at your own risk.
If there is a better way of doing anything here - I'm looking forward to your pull requests.
May the force be with you.