forked from tanhongit/telegram-git-notifier-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·55 lines (55 loc) · 1.23 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "lbiltech/telegram-git-notifier-app",
"description": "Send notification from Gitlab and Github events to Telegram",
"keywords": [
"lbiltech",
"telegram-bot",
"notify",
"git-webhook",
"telegram-notifier",
"telegram-git-notifier",
"github-notifier",
"gitlab-notifier",
"github-telegram-bot",
"gitlab-telegram-bot",
"telegram-bot-github-notify",
"telegram-bot-gitlab-notify",
"telegram-git-notifier-app"
],
"type": "project",
"homepage": "https://github.com/lbiltech/telegram-git-notifier-app",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-json": "*",
"lbiltech/telegram-git-notifier": "dev-main"
},
"autoload": {
"psr-4": {
"LbilTech\\TelegramGitNotifierApp\\": "src/"
}
},
"authors": [
{
"name": "Tan Nguyen",
"email": "[email protected]",
"homepage": "https://tanhongit.com",
"role": "Lead"
}
],
"support": {
"issues": "https://github.com/lbiltech/telegram-git-notifier-app/issues"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-install-cmd": [
"bash ./install.sh"
],
"post-update-cmd": [
"bash ./install.sh"
]
}
}