-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
40 lines (40 loc) · 1013 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "asundust/wechat-work-push",
"description": "利用企业微信应用消息向微信发送通知(无需公众号,不需要安装企业微信客户端,低成本推送消息解决方案)",
"type": "library",
"keywords": [
"laravel-admin",
"extension",
"wechat",
"work",
"push"
],
"homepage": "https://github.com/asundust/wechat-work-push",
"license": "MIT",
"authors": [
{
"name": "asundust",
"email": "asundust@qq.com"
}
],
"require": {
"php": ">=8.0.2",
"encore/laravel-admin": "^1.6",
"w7corp/easywechat": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"Asundust\\WechatWorkPush\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Asundust\\WechatWorkPush\\WechatWorkPushServiceProvider"
]
}
}
}