forked from zoujingli/ThinkAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.12 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
{
"type": "project",
"name": "zoujingli/thinkadmin",
"license": "MIT",
"homepage": "https://thinkadmin.top",
"description": "Application development framework",
"keywords": [
"ThinkAdmin",
"ThinkLibrary"
],
"authors": [
{
"name": "Anyon",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"ext-gd": "*",
"ext-xml": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"endroid/qr-code": "^1.9",
"topthink/framework": "^6.0",
"topthink/think-view": "^1.0",
"zoujingli/ip2region": "^1.0",
"zoujingli/think-library": "6.0.x-dev",
"zoujingli/wechat-developer": "^1.2"
},
"autoload": {
"psr-0": {
"": "extend"
},
"psr-4": {
"app\\": "app"
}
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
},
"minimum-stability": "stable",
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer"
}
}
}