All Projects → w7corp → Easywechat

w7corp / Easywechat

Licence: mit
📦 一个 PHP 微信 SDK

Programming Languages

PHP
23972 projects - #3 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Easywechat

Wechat
WeChat SDK for Go (微信SDK:简单、易用)
Stars: ✭ 3,144 (-67.51%)
Mutual labels:  sdk, wechat
Wechat Php Sdk
PHP微信SDK(微信平台 + 微信支付)
Stars: ✭ 637 (-93.42%)
Mutual labels:  sdk, wechat
Sdk3rd
第三方SDK集成库,授权/分享/支付
Stars: ✭ 249 (-97.43%)
Mutual labels:  sdk, wechat
Oss.clients.sns
社交网站sdk(标准库),微信公众号(订阅号,服务号,小程序)接口sdk-包含消息回复(明文和安全模式),Oauth2.0授权等
Stars: ✭ 136 (-98.59%)
Mutual labels:  sdk, wechat
Think Wechat
企业微信SDK for ThinkPHP5
Stars: ✭ 34 (-99.65%)
Mutual labels:  sdk, wechat
Gochat
🔥 微信 Go SDK 🚀🚀🚀
Stars: ✭ 141 (-98.54%)
Mutual labels:  sdk, wechat
Werobot
WeRoBot 是一个微信公众号开发框架
Stars: ✭ 3,973 (-58.94%)
Mutual labels:  sdk, wechat
Wechatpy
WeChat SDK for Python
Stars: ✭ 3,016 (-68.83%)
Mutual labels:  sdk, wechat
Entwechat
📦 WeChat Enterprise SDK based on EasyWeChat 3.X
Stars: ✭ 12 (-99.88%)
Mutual labels:  sdk, wechat
Weixinmpsdk
微信全平台 SDK Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 6.0。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#.
Stars: ✭ 7,098 (-26.64%)
Mutual labels:  sdk, wechat
Thinkphp5 Wechat
微信 SDK for thinkphp5, 基于 overtrue/wechat
Stars: ✭ 133 (-98.63%)
Mutual labels:  sdk, wechat
Hera
A framework for running WeChat applet. (小程序 SDK,小程序转 H5,小程序转安卓、iOS 原生应用、小程序渲染引擎)
Stars: ✭ 1,186 (-87.74%)
Mutual labels:  sdk, wechat
Rageframe2
一个基于Yii2高级框架的快速开发应用引擎
Stars: ✭ 1,553 (-83.95%)
Mutual labels:  wechat, easywechat
Wechat
weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk
Stars: ✭ 2,330 (-75.92%)
Mutual labels:  sdk, wechat
Miniapp
微信小程序服务端 SDK (for Golang)
Stars: ✭ 815 (-91.58%)
Mutual labels:  sdk, wechat
Wxjava
Wechat-Group/WxJava的备份,有问题请到对应项目下讨论
Stars: ✭ 56 (-99.42%)
Mutual labels:  sdk, wechat
Wechat
Deprecated 微信公众平台企业号 SDK
Stars: ✭ 78 (-99.19%)
Mutual labels:  sdk, wechat
Gxgk Wechat Server
校园微信公众号,使用 Python、Flask、Redis、MySQL、Celery [DEPRECATED]
Stars: ✭ 1,325 (-86.31%)
Mutual labels:  wechat
Go Tfe
Terraform Cloud/Enterprise API Client/SDK in Golang
Stars: ✭ 98 (-98.99%)
Mutual labels:  sdk
Go Sdk
Stars: ✭ 94 (-99.03%)
Mutual labels:  sdk

EasyWeChat

📦 一个 PHP 微信开发 SDK。

Test Status Lint Status Latest Stable Version Latest Unstable Version Total Downloads License huntr

📣 公告

为了更好的推进项目发展,保障项目更新迭代速度,EasyWeChat 正式并入微擎旗下,加上微擎团队的助力,将会为大家提供更强大更稳固更多元化的开源项目。

  • 微擎与 EasyWeChat 结合,基于微擎技术资源方面的优势,将积极发展 EasyWeChat 的开源社区,将为 EasyWeChat 开源项目注入巨大活力。
  • EasyWeChat 原作者 overtrue 将继续担任开源项目的核心开发者,继续参与项目的发展规划,共同打造更强大的开源生态社区。
  • 项目从 6.0 版本开始将修改包名为 w7corp/easywechat,5.x 及以下版本不受影响。

🚨 注意:请 PR 时往 5.x 提交,感谢您的贡献!

Requirement

  1. PHP >= 7.4
  2. Composer
  3. openssl 拓展
  4. fileinfo 拓展(素材管理模块需要用到)

Installation

$ composer require "overtrue/wechat:^5.0" -vvv

Usage

基本使用(以服务端为例):

<?php

use EasyWeChat\Factory;

$options = [
    'app_id'    => 'wx3cf0f39249eb0exxx',
    'secret'    => 'f1c242f4f28f735d4687abb469072xxx',
    'token'     => 'easywechat',
    'log' => [
        'level' => 'debug',
        'file'  => '/tmp/easywechat.log',
    ],
    // ...
];

$app = Factory::officialAccount($options);

$server = $app->server;
$user = $app->user;

$server->push(function($message) use ($user) {
    $fromUser = $user->get($message['FromUserName']);

    return "{$fromUser->nickname} 您好!欢迎关注 overtrue!";
});

$server->serve()->send();

更多请参考 https://www.easywechat.com/

Documentation

官网 · 教程 · 讨论 · 微信公众平台 · WeChat Official

Integration

Laravel 5 拓展包: overtrue/laravel-wechat

Contributors

This project exists thanks to all the people who contribute. [Contribute].

PHP 扩展包开发

想知道如何从零开始构建 PHP 扩展包?

请关注我的实战课程,我会在此课程中分享一些扩展开发经验 —— 《PHP 扩展包实战教程 - 从入门到发布》

License

MIT

FOSSA Status

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].