-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
48 lines (43 loc) · 872 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
41
42
43
44
45
46
47
48
{
"name": "wechaty/php-wechaty-getting-started",
"type": "template",
"description": "PHP Wechaty Starter Project Template that Works Out-of-the-Box.",
"keywords": [
"template",
"autoload"
],
"homepage": "https://github.com./wechaty/php-wechaty-getting-started",
"license": "Apache-2.0",
"version": "v0.0.1",
"authors": [
{
"name": "Chunsheng Zhang",
"email": "[email protected]",
"homepage": "https://www.luomor.com/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"wechaty/php-wechaty": "^v0.0.6"
},
"require-dev": {
},
"config": {
},
"extra": {
},
"autoload": {
"psr-4": {
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "examples/"
}
},
"scripts": {
},
"support": {
"issues": "https://github.com./wechaty/php-wechaty-getting-started/issues"
}
}