-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.18 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
{
"name": "kristuff/minitoring",
"description": "Mini monitoring web application for Gnu/linux server",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Kristuff",
"homepage": "https://github.com/kristuff"
}
],
"require": {
"php": ">=7.3",
"kristuff/miniweb": "^0.9.15-stable",
"kristuff/parselog": "^0.7.2-stable",
"kristuff/mishell": "^1.5-stable",
"kristuff/patabase": "^1.0-stable",
"cboden/ratchet": "^0.4-stable",
"dragonmantank/cron-expression": "^3.0-stable",
"t4web/composer-lock-parser": "1.1.*"
},
"autoload": {
"psr-4": {
"Kristuff\\Minitoring\\": "app/lib/"
}
},
"config": {
"vendor-dir": "app/vendor",
"bin-dir": "app/bin"
},
"scripts": {
"update-vendor-config" : [
"cp -R 'app/vendor/kristuff/miniweb/config' 'app' ",
"cp -R 'app/vendor/kristuff/miniweb/locales' 'app' "
],
"post-install-cmd": [
"@update-vendor-config"
],
"post-update-cmd": [
"@update-vendor-config"
]
}
}