Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/coloredcow/laravel-twilio
- Owner: ColoredCow
- License: gpl-3.0
- Created: 2016-06-14T04:34:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-26T10:47:36.000Z (over 6 years ago)
- Last Synced: 2024-12-06T02:48:05.078Z (about 1 month ago)
- Topics: composer-package, laravel, sms-api
- Language: PHP
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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,
```