-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.22 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
{
"name": "m4n50n/telegram-bot-bundle",
"description": "This bundle provides a wrapper for using longman/telegram-bot inside Symfony.",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"telegram",
"bot",
"api",
"wrapper",
"bundle"
],
"authors": [
{
"name": "Jose Clemente García Rodríguez",
"email": "[email protected]"
}
],
"homepage": "https://github.com/m4n50n/telegram_bot_bundle",
"support": {
"issues": "https://github.com/m4n50n/telegram_bot_bundle/issues",
"source": "https://github.com/m4n50n/telegram_bot_bundle"
},
"require": {
"php": "^8.1",
"longman/telegram-bot": "^0.82.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/monolog-bundle": "^3.0"
},
"autoload": {
"psr-4": {
"M4n50n\\TelegramBotBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"M4n50n\\TelegramBotBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}