-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1018 Bytes
/
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
{
"name": "julyssn/think-addons",
"description": "The ThinkPHP6 Addons Package",
"license": "Apache-2.0",
"authors": [
{
"name": "Julyssn",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"topthink/framework": "^6.0.3",
"topthink/think-view": "^1.0",
"topthink/think-helper": "^3.0.0",
"symfony/var-exporter": "^5.3.0",
"nelexa/zip": "^3.3",
"guzzlehttp/guzzle": "^7.3",
"ext-json": "*",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"think\\": "src/"
},
"files": [
"src/helper.php"
]
},
"extra": {
"think": {
"services": [
"think\\addons\\Service"
],
"config":{
"addons": "src/config.php"
}
}
},
"scripts" : {
"post-install-cmd": [
"php think addons:config"
]
}
}