orukusaki/twiml
Composer 安装命令:
composer require orukusaki/twiml
包简介
Fluent API for Twilio TwiML responses
README 文档
README
This library offers an easy way to generate TwiML responses for Twilio apps, using a nice fluent interface. It doesn't use any magic, so your IDE should be able to autocomplete all method calls as you type.
For example:
use Orukusaki\TwiML\Voice\Response; $response = new Response(); $response->say('Thanks for your call'); $response->dial('+441473000000') ->withAction('http://www.example.com/twilio/callback'); echo $response;
Will output:
<?xml version="1.0"?> <Response> <Say>Thanks for your call</Say> <Dial action="http://www.example.com/twilio/callback">+441473000000</Dial> </Response>
It's good for really quick one-liners (php >= 5.4):
echo (new Response())->say('Hi');
Will output:
<?xml version="1.0"?> <Response> <Say>Hi</Say> </Response>
More complex responses can be created in function chains:
echo (new Response()) ->say('S\'il vous plaît laissez un message') ->withVoice('alice') ->withLanguage('fr-FR') ->end() ->record() ->withAction('http://www.example.com/twilio/recording');
Will output:
<?xml version="1.0"?> <Response> <Say voice="alice" language="fr-FR">S'il vous plaît laissez un message</Say> <Record action="http://www.example.com/twilio/recording"/> </Response>
You can also set multiple attributes at once:
echo (new Response()) ->dial('+4400000000') ->with(['timeout' => 10, 'record' => 'record-from-answer']);
will output:
<?xml version="1.0"?> <Response> <Dial timeout="10" record="record-from-answer">+4400000000</Dial> </Response>
Installing
composer install "orukusaki/twiml"
Contributing
Issues & PRs welcomed on https://github.com/orukusaki/TwiML
统计信息
- 总下载量: 322
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-10-22