Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/coloredcow/laravel-twilio

Quickly add the ability to send SMS from your laravel applications using Twilio service. (Deprecated)
https://github.com/coloredcow/laravel-twilio

composer-package laravel sms-api

Last synced: 5 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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.

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

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

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

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

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