tianshupei / think-wechat
thinkphp 微信SDK
This package's canonical repository appears to be gone and the package has been frozen as a result.
dev-master
2019-04-11 10:09 UTC
Requires
- overtrue/wechat: ^4.1
This package is not auto-updated.
Last update: 2025-04-08 08:52:55 UTC
README
介绍
EasyWeChat的thinkphp5封装
安装教程
composer require tianshupei/think-wechat
使用说明
配置文件config\tsp-wechat.php
use Tsp\WeChat\Factory;
use Tsp\WeChat\Wechat;
// 方法一
$wechat = new Factory();
$wechat->officialAccount; // 微信公众号
$wechat->payment; // 微信支付
$wechat->miniProgram; // 小程序
$wechat->openPlatform; // 开放平台
$wechat->work; // 企业微信
$wechat->openWork; // 企业微信开放平台
// 方法二
Wechat::officialAccount(); // 微信公众号
Wechat::payment(); // 微信支付
Wechat::miniProgram(); // 小程序
Wechat::openPlatform(); // 开放平台
Wechat::work(); // 企业微信
Wechat::openWork(); // 企业微信开放平台
详细使用请阅读EasyWechat文档