-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 823 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 823 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
{
"name": "funadmin/fun-addons",
"license": "Apache-2.0",
"description": "fun-addons是一个基于TP6的插件扩展,适用于FunAmin框架",
"authors": [{
"name": "fun-addons",
"email": "994927909@qq.com"
}],
"autoload": {
"psr-4": {
"fun\\": "src/"
},
"files": [
"src/helper.php"
]
},
"extra": {
"think": {
"services": [
"fun\\addons\\Service"
],
"config": {
"addons": "src/config.php",
"api": "src/api.php",
"console": "src/console.php"
}
}
},
"scripts": {
"post-install-cmd": [
"php think addons:config",
"php think auth:config"
]
}
}