codemonkey76/plivo-notification-channel
Composer 安装命令:
composer require codemonkey76/plivo-notification-channel
包简介
Plivo SMS notifications driver for Laravel
关键字:
README 文档
README
This package makes it easy to send SMS notifications using Plivo with Laravel 8.x.
This package is a copy of laravel-notification-channel/plivo as that package is currently broken for Laravel 8 and current version of plivo/plivo-php
Contents
Installation
Install the package via composer:
composer require codemonkey76/plivo-notification-channel
Setting up your Plivo service
Log in to your Plivo dashboard and grab your Auth Id, Auth Token and the phone number you're sending from. Add them to config/services.php.
// config/services.php ... 'plivo' => [ 'auth_id' => env('PLIVO_AUTH_ID'), 'auth_token' => env('PLIVO_AUTH_TOKEN'), // Country code, area code and number without symbols or spaces 'from_number' => env('PLIVO_FROM_NUMBER'), ],
Usage
Follow Laravel's documentation to add the channel your Notification class:
use Illuminate\Notifications\Notification; use Codemonkey76\Plivo\PlivoChannel; use Codemonkey76\Plivo\PlivoMessage; public function via($notifiable) { return [PlivoChannel::class]; } public function toPlivo($notifiable) { return (new PlivoMessage) ->content('This is a test SMS via Plivo using Laravel Notifications!'); }
Add a routeNotificationForPlivo method to your Notifiable model to return the phone number:
public function routeNotificationForPlivo() { // Country code, area code and number without symbols or spaces return preg_replace('/\D+/', '', $this->phone_number); }
Available methods
content()- (string), SMS notification bodyfrom()- (integer) Override default from number
Credits
License
The MIT License (MIT). Please see License File for more information.
codemonkey76/plivo-notification-channel 适用场景与选型建议
codemonkey76/plivo-notification-channel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 45 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 05 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「notifications」 「laravel」 「plivo」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 codemonkey76/plivo-notification-channel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 codemonkey76/plivo-notification-channel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 codemonkey76/plivo-notification-channel 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Monolog Handler for SMS messaging services such as Twilio, Clickatell and Plivo.
A Laravel Nova package that adds a notification feed in your Nova app.
A modern, flexible Laravel package for integrating any SMS gateway with REST API support
Send SMS using Plivo Cloud API
Symfony Plivo Notifier Bridge
Plivo Bundle for Symfony - Send and receive text messages
统计信息
- 总下载量: 45
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-05-27