-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.56 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
{
"name": "ulthon/ulthon_admin",
"description": "基于ThinkPHP6.0和layui的快速开发的后台管理系统。",
"type": "project",
"keywords": [
"ulthon_admin",
"ulthon",
"thinkphp",
"admin"
],
"homepage": "http://admin.demo.ulthon.com//",
"license": "MIT",
"authors": [
{
"name": "augushong",
"email": "augushong@ulthon.com"
}
],
"require": {
"php": ">=8.0.0",
"ext-json": "*",
"topthink/framework": "^8.0",
"topthink/think-orm": "^3.0",
"topthink/think-multi-app": "^1.0",
"topthink/think-captcha": "^3.0",
"guzzlehttp/guzzle": "^7.4",
"phpoffice/phpspreadsheet": "^1.22",
"doctrine/annotations": "^1.13",
"league/flysystem": "^3.0",
"overtrue/flysystem-qiniu": "^3.0",
"overtrue/flysystem-cos": "^5.0",
"iidestiny/flysystem-oss": "^4.0",
"czproject/git-php": "^4.2",
"psr/simple-cache": ">=1.0"
},
"require-dev": {
"symfony/var-dumper": "*"
},
"autoload": {
"psr-4": {
"app\\": "app",
"trait\\": "extend/trait",
"base\\": "extend/base",
"Phinx\\": "extend/phinx"
},
"psr-0": {
"": "extend/"
}
},
"config": {
"preferred-install": "dist",
"secure-http": false
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
}
}