aloha/twilio
Composer 安装命令:
composer require aloha/twilio
包简介
Twilio API for Laravel
README 文档
README
Laravel Twilio API Integration
Installation
Begin by installing this package through Composer. Run this command from the Terminal:
composer require aloha/twilio
This will register two new artisan commands for you:
twilio:smstwilio:call
And make these objects resolvable from the IoC container:
Aloha\Twilio\Manager(aliased astwilio)Aloha\Twilio\TwilioInterface(resolves aTwilioobject, the default connection object created by theManager).
There's a Facade class available for you, if you like. In your app.php config file add the following
line to the aliases array if you want to use a short class name:
'Twilio' => 'Aloha\Twilio\Support\Laravel\Facade',
You can publish the default config file to config/twilio.php with the terminal command
php artisan vendor:publish --provider="Aloha\Twilio\Support\Laravel\ServiceProvider"
Facade
The facade has the exact same methods as the Aloha\Twilio\TwilioInterface. First, include the Facade class at the top of your file:
use Twilio;
To send a message using the default entry from your twilio config file:
Twilio::message($user->phone, $message);
One extra feature is that you can define which settings (and which sender phone number) to use:
Twilio::from('call_center')->message($user->phone, $message); Twilio::from('board_room')->message($boss->phone, 'Hi there boss!');
Define multiple entries in your twilio config file to make use of this feature.
Usage
Creating a Twilio object. This object implements the Aloha\Twilio\TwilioInterface.
$twilio = new Aloha\Twilio\Twilio($accountId, $token, $fromNumber);
Sending a text message:
$twilio->message('+18085551212', 'Pink Elephants and Happy Rainbows');
Creating a call:
$twilio->call('+18085551212', 'http://foo.com/call.xml');
Generating a call and building the message in one go:
$twilio->call('+18085551212', function (\Twilio\TwiML\VoiceResponse $message) { $message->say('Hello'); $message->play('https://api.twilio.com/cowbell.mp3', ['loop' => 5]); });
or to make a call with any Twiml description you can pass along any Twiml object:
$message = new \Twilio\TwiML\VoiceResponse(); $message->say('Hello'); $message->play('https://api.twilio.com/cowbell.mp3', ['loop' => 5]); $twilio->call('+18085551212', $message);
Access the configured Twilio\Rest\Client object:
$sdk = $twilio->getTwilio();
You can also access this via the Facade as well:
$sdk = Twilio::getTwilio();
Pass as many optional parameters as you want
If you want to pass on extra optional parameters to the messages->sendMessage(...) method from the Twilio SDK, you can do so
by adding to the message method. All arguments are passed on, and the from field is prepended from configuration.
$twilio->message($to, $message, $mediaUrls, $params); // passes all these params on.
The same is true for the call method.
$twilio->call($to, $message, $params); // passes all these params on.
Dummy class
There is a dummy implementation of the TwilioInterface available: Aloha\Twilio\Dummy. This class
allows you to inject this instead of a working implementation in case you need to run quick integration tests.
Logging decorator
There is one more class available for you: the Aloha\Twilio\LoggingDecorator. This class wraps any
TwilioInterface object and logs whatever Twilio will do for you. It also takes a Psr\Log\LoggerInterface object
(like Monolog) for logging, you know.
By default the service providers don't wrap objects with the LoggingDecorator,
but it is at your disposal in case you want it. A possible use case is to construct a
TwilioInterface object that logs what will happen, but doesn't actually call Twilio (using the Dummy class):
if (getenv('APP_ENV') === 'production') { $twilio = $container->make(\Aloha\Twilio\Manager::class); } else { $psrLogger = $container->make(\Psr\Log\LoggerInterface::class); $twilio = new LoggingDecorator($psrLogger, new \Aloha\Twilio\Dummy()); } // Inject it wherever you want. $notifier = new Notifier($twilio);
Credits
License
laravel-twilio is open-sourced software licensed under the MIT license
aloha/twilio 适用场景与选型建议
aloha/twilio 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.74M 次下载、GitHub Stars 达 473, 最近一次更新时间为 2014 年 07 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「sms」 「twilio」 「laravel」 「ivr」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 aloha/twilio 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 aloha/twilio 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 aloha/twilio 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
SDK for payment gateway PlatbaMobilom.sk for PHP7.0
Componente para integração com serviços de mensageria com APIs externas como Twilio, SendGrid, AWS SES, etc.
Extensible library for building notifications and sending them via different delivery channels.
yii2-sms expand
Alfabank REST API integration
统计信息
- 总下载量: 3.74M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 478
- 点击次数: 34
- 依赖项目数: 9
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-07-22