-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1.1 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
{
"name": "luzrain/telegram-bot-bundle",
"description": "Symfony bundle for Telegram Bot API",
"keywords": ["telegram", "telegram-bot-api", "telegram-bot", "telegram-bundle"],
"homepage": "https://github.com/luzrain/telegram-bot-bundle",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Anton Zenkov",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"luzrain/telegram-bot-api": "^3.0",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/http-kernel": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.50",
"phpunit/phpunit": "^10.5",
"symfony/framework-bundle": "^7.0",
"vimeo/psalm": "^5.22"
},
"autoload": {
"psr-4": {
"Luzrain\\TelegramBotBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Luzrain\\TelegramBotBundle\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
}
}