-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
56 lines (56 loc) · 1.71 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
{
"name": "telegram-bot/support-bot",
"type": "project",
"description": "Friendly and helpful bot for t.me/PHP_Telegram_Support_Bot",
"keywords": ["telegram", "bot", "manager", "support"],
"license": "MIT",
"homepage": "https://github.com/php-telegram-bot/support-bot",
"support": {
"issues": "https://github.com/php-telegram-bot/support-bot/issues",
"source": "https://github.com/php-telegram-bot/support-bot"
},
"authors": [
{
"name": "PHP Telegram Bot Team",
"homepage": "https://github.com/php-telegram-bot/support-bot/graphs/contributors",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"php-telegram-bot/telegram-bot-manager": "^2.1",
"longman/telegram-bot": "0.81",
"noplanman/service-webhook-handler": "^1.0",
"vlucas/phpdotenv": "^5.5",
"elvanto/litemoji": "^4.3",
"monolog/monolog": "^3.3",
"matthiasmullie/scrapbook": "^1.4",
"knplabs/github-api": "^3.11",
"guzzlehttp/guzzle": "^7.7",
"guzzlehttp/psr7": "^2.5"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"php-parallel-lint/php-parallel-lint": "^1.3",
"symfony/var-dumper": "^6.2"
},
"autoload": {
"psr-4": {
"TelegramBot\\SupportBot\\": "src"
}
},
"scripts": {
"check-code": [
"vendor/bin/parallel-lint . --exclude vendor",
"vendor/bin/phpcs"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}