-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 903 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
{
"name": "yangweijie\/think-laradumps",
"description": "debug tool Using Laradumps App in ThinkPHP",
"license": "MIT",
"authors": [
{
"name": "yangweijie",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"topthink/framework": "5.1.* | ^6.0 | ^6.1",
"ramsey/uuid": "^4.2",
"symfony/var-dumper": "^4.2 | ^5.4 | ^6.0"
},
"autoload": {
"psr-4": {
"think\\Laradumps\\": "src"
},
"files": [
"src/functions.php"
]
},
"support": {
"email": "[email protected]"
},
"extra": {
"think": {
"config": {
"laradumps": "config/config.php"
}
}
},
"scripts":{
"post-autoload-dump": [
"think\\Laradumps\\Install::config"
]
}
}