forked from hbh112233abc/ueditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 881 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 881 Bytes
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
{
"name": "bingher/ueditor",
"description": "ueditor for thinkphp6",
"type": "library",
"minimum-stability": "dev",
"require": {
"topthink/framework": "^6.0.0",
"topthink/think-view": "^1.0",
"topthink/think-image": "^1.0",
"topthink/think-migration": "^3.0",
"xaboy/form-builder": "~2.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"bingher\\ueditor\\": "src/"
},
"files": [
"src/helper.php"
]
},
"extra": {
"think": {
"services": [
"bingher\\ueditor\\UeditorService"
],
"config":{
"ueditor": "src/config.php"
}
}
},
"authors": [
{
"name": "hbh112233abc",
"email": "hbh112233abc@163.com"
}
]
}