dev-master
9999999-dev http://github.com/GeorgeStrakhov/LaratwilioTwilio api wrapper for Laravel4
MIT
The Requires
- php >=5.3.0
- twilio/sdk dev-master
- illuminate/support ~4
by George Strakhov
laravel sms twilio
Twilio api wrapper for Laravel4
add the following to your composer require
:, (*1)
"twilio/laratwilio": "dev-master"
run from terminal:, (*2)
composer update
add Laratwilio to the list of providers. In config/app.php
add the following line to the providers
array:, (*3)
'Twilio\Laratwilio\LaratwilioServiceProvider'
add a Facade for more convenient usage. In config/app.php
add the following line to the aliases
array:, (*4)
'Sms' => 'Twilio\Laratwilio\Facades\Laratwilio'
publish config files so that you can put your Twilio details in the right place. In your terminal:, (*5)
php artisan config:publish twilio/laratwilio
edit the new config file in the config/packages/twilio/laratwilio
and enter your data, (*6)
Anywhere in your application when you need to send an sms message, just do:, (*7)
Sms::send(array('to'=>'+12345678', 'text'=>'hello world'));
This is my first package and I'm very new to all this., (*8)
Most likely I'm doing lots of things wrong. Use at your own risk., (*9)
If there is a better way of doing anything here - I'm looking forward to your pull requests., (*10)
May the force be with you., (*11)
Twilio api wrapper for Laravel4
MIT
laravel sms twilio