-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
65 lines (65 loc) · 1.63 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
{
"name": "topthink/think",
"description": "the new thinkphp framework",
"type": "project",
"keywords": [
"framework",
"thinkphp",
"ORM"
],
"homepage": "http://thinkphp.cn/",
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"topthink/framework": "^6.0.0",
"topthink/think-orm": "^2.0",
"topthink/think-multi-app": "^1.0",
"topthink/think-worker": "^3.0",
"topthink/think-view": "^1.0",
"firebase/php-jwt": "^5.0",
"overtrue/wechat": "^4.2",
"xaboy/form-builder": "^2.0",
"topthink/think-captcha": "^3.0",
"workerman/channel": "^1.0",
"workerman/workerman": "^3.5",
"yansongda/pay": "^2.9",
"phpmailer/phpmailer": "^6.1",
"qcloudsms/qcloudsms_php": "^0.1.4",
"qcloud/cos-sdk-v5": "^2.0",
"spatie/macroable": "^1.0",
"phpoffice/phpexcel": "^1.8"
},
"require-dev": {
"symfony/var-dumper": "^4.2"
},
"autoload": {
"psr-4": {
"app\\": "app",
"learn\\": "learn"
},
"psr-0": {
"": "extend/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}