-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·73 lines (73 loc) · 2 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bobliu0518/bl1040bot",
"description": "NULL",
"keywords": [
"qqbot",
"coolq-http-api"
],
"license": "(MIT and AGPL-3.0-or-later)",
"authors": [
{
"name": "bobliu0518",
"email": "[email protected]"
}
],
"support": {
"QQ Group": "828615670"
},
"type": "project",
"autoload": {
"psr-4": {
"kjBot\\SDK\\": "SDK/",
"kjBot\\Frame\\": "public/",
"BLBot\\": "public/"
},
"files": [
"public/tools/Autoload.php"
]
},
"require": {
"php": "^8.1",
"ext-SimpleXML": ">=7.2",
"ext-sqlite3": ">=7.2",
"fjw/color-compare": "^1.1",
"intervention/image": ">=2.4",
"kriswallsmith/buzz": ">=0.17.2",
"mongodb/mongodb": "^1.11",
"nxp/math-executor": ">=2.3",
"overtrue/php-opencc": "^1.0",
"overtrue/pinyin": ">=5.0",
"rexxars/morse": ">=1.0",
"simplesoftwareio/simple-qrcode": ">=4.2",
"spatie/async": "^1.6",
"zjkal/time-helper": "^1.1"
},
"suggest": {
"ext-imagick": "image 库依赖",
"linfo/linfo": "status 模块依赖"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('config.ini') || copy('config.ini.example', 'config.ini');\""
],
"framework-only": [
"@php framework-only.php"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"http-interop/http-factory-guzzle": "^1.2",
"knplabs/github-api": ">=2.9",
"lcobucci/jwt": ">=3.2",
"linfo/linfo": ">=4.0",
"meyfa/php-svg": ">=0.9.0",
"nelexa/zip": ">=3.1",
"statickidz/php-google-translate-free": ">=1.0"
}
}