xxutianyi/laravel-wework

This package is abandoned and no longer maintained. No replacement package was suggested.

Laravel 企业微信服务端接口实现

Maintainers

Package info

github.com/xxutianyi/laravel-wework

Issues

pkg:composer/xxutianyi/laravel-wework

Statistics

Installs: 13

Dependents: 0

Suggesters: 0

Stars: 0

v2.0.0 2025-08-29 01:52 UTC

This package is auto-updated.

Last update: 2026-06-29 02:17:23 UTC


README

该项目已经太久没有更新且内容过时,即将进行重构
The project has not been updated for too long and its content is outdated, and it is about to undergo refactoring

PHP 企业微信服务端接口实现

安装使用

#添加依赖
composer require wisdech/laravel-wework

Laravel项目中

#发布配置文件
php artisan vendor:publish --tag=wework-config
#在.env文件填写配置信息
WEWORK_CORP_ID=
WEWORK_AGENT_ID=
WEWORK_SECRET=
//使用Facade
use Wisdech\Wework\Facade\Wework

$loginUri=Wework::buildLoginUri(...);

在其他PHP项目中

$sdk=new Wisdech\Wework\WeworkSDK('CorpID','AgentID','Secret')

$loginUri=$sdk->buildLoginUri(...);