easywechat
6.16.0
A PHP WeChat development SDK, an open source product of WeQing, an open source SaaS platform provider.
PHP >= 8.0.2
Composer >= 2.0
composer require w7corp/easywechat
Basic usage (taking the public account server as an example):
<?phpuse EasyWeChatOfficialAccountApplication;$config = ['app_id' => 'wx3cf0f39249eb0exxx','secret' => 'f1c242f4f28f735d4687abb469072xxx','aes_key' => 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG','token' => 'easywechat', ];$app = new Application($config);$server = $app->getServer();$server->with(fn() => "Hello! EasyWeChat!");$response = $server-> serve();
Official website · Discussion · Update strategy
If you like my project and want to support it, click here
I am very grateful to Jetbrains for providing me with an IDE open source license to allow me to complete the development work on this and other open source projects.
MIT