ryzhov/asterisk-bundle
Composer 安装命令:
composer require ryzhov/asterisk-bundle
包简介
AsteriskBundle for symfony framework
README 文档
README
The AsteriskBundle provides integration of the Asterisk PAMI
library into the Symfony2 framework.
License
This bundle is released under the MIT license
Installation
Require the bundle and its dependencies with composer:
$ composer require ryzhov/asterisk-bundle
Register the bundle:
// app/AppKernel.php public function registerBundles() { $bundles = array( new Ryzhov\Bundle\AsteriskBundle(), ); }
Usage
Add the asterisk section in your configuration file:
asterisk: connections: default: host: "%asterisk_host%" port: "%asterisk_ami_port%" username: "%asterisk_ami_username%" secret: "%asterisk_ami_secret%" connect_timeout: 5 read_timeout: 5 clients: main: connection: default logger_channel: ami
Here we configure the connection parameter and the AMI client that our application will have.
In this example your service container will contain the service asterisk.main_client and
asterisk.ami_connection.default connection parameters.
AMI client service interface reference here Asterisk PAMI.
Register async event handler with tag asterisk.ami_event_handler will handle only specified events.
parameters: events: - "PAMI\\Message\\Event\\DeviceStateChangeEvent" - "PAMI\\Message\\Event\\PeerStatusEvent" services: service.event_handler: class: AppBundle\Service\EventHandler calls: - [setLogger, ["@logger"]] tags: - { name: monolog.logger, channel: event } - { name: asterisk.ami_event_handler, client: asterisk.main_client, events: "%events%" }
Event handler example:
namespace AppBundle\Service; use PAMI\Listener\IEventListener; use PAMI\Message\Event\EventMessage; class EventHandler implements IEventListener { . . . public function handle(EventMessage $event) { $this->logger->debug(sprintf('class: "%s" handle', get_class($event))); } }
This is example of code ryzhov/example-asterisk-ami
$ composer create-project ryzhov/example-asterisk-ami
-- configure ami socket parameters here --
asterisk_host (localhost): 127.0.0.1
asterisk_ami_port (5038):
asterisk_ami_username (ami):
asterisk_ami_secret (pass4ami):
--
$ cd example-asterisk-ami
$ php bin/console event-handler
ryzhov/asterisk-bundle 适用场景与选型建议
ryzhov/asterisk-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 160 次下载、GitHub Stars 达 3, 最近一次更新时间为 2017 年 02 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「event」 「client」 「asterisk」 「ami」 「voip」 「telephony」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ryzhov/asterisk-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ryzhov/asterisk-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ryzhov/asterisk-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Asterisk Manager Interface (AMI) client for PHP, event driven, object oriented (Fork)
Access array data quickly/easily using dot-notation and asterisk.
Symfony bundle for broadway/broadway.
Mock PSR-18 HTTP client
Fork of marcelog's Asterisk Manager Interface (AMI) client for PHP, event driven, object oriented
Asynchronous MQTT client built on React
统计信息
- 总下载量: 160
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 4
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-02-04