-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
executable file
·61 lines (61 loc) · 1.5 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
56
57
58
59
60
61
{
"name": "cslant/telegram-git-notifier-app",
"description": "The PHP app to send notification from Gitlab and Github events to Telegram",
"keywords": [
"cslant",
"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/cslant/telegram-git-notifier-app",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-json": "*",
"cslant/telegram-git-notifier": "^1.3.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.37.1",
"phpstan/phpstan": "^1.10.39"
},
"autoload": {
"psr-4": {
"CSlant\\TelegramGitNotifierApp\\": "src/"
}
},
"authors": [
{
"name": "Tan Nguyen",
"email": "tannp27@gmail.com",
"homepage": "https://tanhongit.com",
"role": "Lead"
}
],
"support": {
"issues": "https://github.com/cslant/telegram-git-notifier-app/issues"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"analyse": "vendor/bin/phpstan",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"post-install-cmd": [
"bash vendor/cslant/telegram-git-notifier/install.sh"
],
"post-update-cmd": [
"bash vendor/cslant/telegram-git-notifier/install.sh"
]
}
}