-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
60 lines (60 loc) · 1.22 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
{
"name": "zoujingli/think-library",
"license": "MIT",
"homepage": "https://thinkadmin.top",
"description": "Library for ThinkAdmin",
"authors": [
{
"name": "Anyon",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"wiki": "https://thinkadmin.top",
"forum": "https://thinkadmin.top",
"source": "https://gitee.com/zoujingli/ThinkLibrary",
"issues": "https://gitee.com/zoujingli/ThinkLibrary/issues"
},
"require": {
"php": ">=7.1",
"ext-gd": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-zlib": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"symfony/process": "^5.4|^6.0|*",
"topthink/framework": "^6.0|^8.0|*",
"topthink/think-migration": "^3.0|*"
},
"autoload": {
"files": [
"src/common.php"
],
"psr-4": {
"think\\admin\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload-dev": {
"psr-4": {
"think\\admin\\tests\\": "tests"
}
},
"extra": {
"think": {
"services": [
"think\\admin\\Library"
]
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true
}
}