Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
PrateekNarang authored Jun 14, 2016
1 parent c3e1996 commit 7a6e65b
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,26 @@
# Laravel and Twilio Integration
Twilio Integration for Laravel

## Introduction

## Installation


## 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,
```

0 comments on commit 7a6e65b

Please sign in to comment.