-
Notifications
You must be signed in to change notification settings - Fork 88
/
composer.json
68 lines (68 loc) · 1.7 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
{
"name": "netcccyun/dnsmgr",
"description": "聚合DNS管理系统",
"type": "project",
"keywords": [
"thinkphp",
"dns",
"dnsmanager",
"cccyun"
],
"homepage": "https://blog.cccyun.cn/post-526.html",
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "[email protected]",
"role": "Framework Developer"
},
{
"name": "yunwuxin",
"email": "[email protected]",
"role": "Framework Developer"
},
{
"name": "netcccyun",
"homepage": "https://blog.cccyun.cn",
"role": "Project Owner"
},
{
"name": "coolxitech",
"email": "[email protected]",
"homepage": "https://www.kuxi.tech",
"role": "Project Developer"
}
],
"require": {
"php": ">=7.4.0",
"ext-pdo": "*",
"ext-gd": "*",
"ext-curl": "*",
"topthink/framework": "^6.0.0",
"topthink/think-orm": "^2.0",
"topthink/think-view": "^1.0",
"cccyun/think-captcha": "^3.0"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
"topthink/think-trace":"^1.0",
"swoole/ide-helper": "^5.1"
},
"autoload": {
"psr-4": {
"app\\": "app"
},
"psr-0": {
"": "extend/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
}
}