yaoshanliang / phpsms
sms for php
Installs: 173
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- toplan/laravel-sms: 2.3.*
This package is not auto-updated.
Last update: 2024-11-17 08:48:18 UTC
README
基于PhpSms,增加“创蓝”服务商。
安装
composer require yaoshanliang/phpsms
快速上手
1. 配置
- 配置代理器所需参数
为你需要用到的短信服务商(即代理器)配置必要的参数。可以在config\phpsms.php
中键为agents
的数组中配置,也可以手动在程序中设置,示例如下:
//example: Sms::agents([ 'Chuanglan' => [ //短信API key 'apiAccount' => 'your api key', //短信API Password 'apiPassword' => 'your api password', //代理器 'agentClass' => 'Yaoshanliang\PhpSms\ChuanglanAgent', ] ]);
- 配置可用代理器
配置你的调度方案。可在config\phpsms.php
中键为enable
的数组中配置。也可以手动在程序中设置,示例如下:
//example: Sms::enable([ //被使用概率为2/3 'Chuanglan' => '20', //被使用概率为1/3,且为备用代理器 'YunPian' => '10 backup', //仅为备用代理器 'YunTongXun' => '0 backup', ]);
2. 在laravel中使用
如果你只想单纯的在laravel中使用phpsms的功能可以按如下步骤操作, 当然也为你准备了基于phpsms开发的laravel-sms
- 在config/app.php中引入服务提供器
//服务提供器 'providers' => [ ... Toplan\PhpSms\PhpSmsServiceProvider::class, ] //别名 'aliases' => [ ... 'PhpSms' => Toplan\PhpSms\Facades\Sms::class, ]
- 生成配置文件
php artisan vendor:publish
生成的配置文件为config/phpsms.php,然后在该文件中按提示配置。
- 使用
详见API,示例:
PhpSms::make()->to($to)->content($content)->send();
3. 详细使用见
License
MIT