shabayek/laravel-sms
Composer 安装命令:
composer require shabayek/laravel-sms
包简介
Laravel Package For SMS Sending
README 文档
README
This is a Laravel Package for SMS Gateway Integration. Now Sending SMS is easy.
List of supported gateways:
Install
Via Composer
composer require shabayek/laravel-sms
Usage
- Publish the config file
php artisan vendor:publish --provider="Shabayek\Sms\SmsServiceProvider"
- Choose what gateway you would like to use for your application. Then make that as default driver so that you don't have to specify that everywhere. But, you can also use multiple gateways in a project.
'default' => 'smseg',
- Then fill the credentials for that gateway in the drivers array.
SMS_CONNECTION=smseg SMS_USERNAME=username SMS_PASSWORD=password SMS_SENDER_ID=sender SMS_SERVICE=normal
- Send normal sms message
use Shabayek\Sms\Facades\Sms; $sms = Sms::send('0120000000', 'Hello world');
- Send otp sms message
if you set sms service normal it's will send via sms message if you set sms service otp it's will send via sms message
use Shabayek\Sms\Facades\Sms; $sms = Sms::sendOtp('0120000000');
- Verify phone number
use Shabayek\Sms\Facades\Sms; $phone = '09121234567'; // phone number $otp = '123456'; // otp that you sent to phone $actualOtp = '123456'; // this is the actual otp that you sent to the user $verify = Sms::verify($phone, $otp, $actualOtp); // third params is optional with service otp
- You can set language for the OTP sms message.
en: For English ar: For Arabic
use Shabayek\Sms\Facades\Sms; $sms = Sms::setLanguage('ar'); ->sendOtp('0120000000');
Adding Custom Cache Drivers
- Writing The Driver
To create our custom sms driver, we first need to implement the Shabayek\Sms\Contracts\SmsGatewayContract contract. So, a new SMS gateway implementation might look something like this:
namespace Shabayek\Sms\Contracts; class CustomSms implements SmsGatewayContract { public function send($phone, $message): array; public function sendOtp($phone, $message = null); public function verify(string $phone, int $otp, $actualOtp = null): bool; public function balance() { } }
Then, we need to add a new config for our custom sms driver. in sms config within connections key
'connections' => [ ... 'custom' => [ 'driver' => 'custom', 'username' => 'username', 'password' => 'password', 'sender_id' => 'sender', 'service' => 'normal', ], ... ],
we can finish our custom driver registration by calling the Sms facade's extend method:
Sms::extend('custom', function ($app) { return new CustomSms(config()); });
Testing
composer test
Security Vulnerabilities
If you've found a bug regarding security please mail esmail.shabayek@gmail.com instead of using the issue tracker.
License
The Laravel SMS Gateway package is open-sourced software licensed under the MIT license.
shabayek/laravel-sms 适用场景与选型建议
shabayek/laravel-sms 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.07k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2022 年 04 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「package」 「sms」 「laravel」 「smsmisr」 「smseg」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 shabayek/laravel-sms 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 shabayek/laravel-sms 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 shabayek/laravel-sms 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
SDK for payment gateway PlatbaMobilom.sk for PHP7.0
Extensible library for building notifications and sending them via different delivery channels.
Simple ASCII output of array data
yii2-sms expand
Alfabank REST API integration
统计信息
- 总下载量: 1.07k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-16