-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·41 lines (41 loc) · 1.13 KB
/
composer.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.13 KB
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": "anton.z@live.com"
}
],
"require": {
"php": ">=8.2",
"luzrain/telegram-bot-api": "^3.11.0",
"symfony/config": "^7.0|^8.0",
"symfony/console": "^7.0|^8.0",
"symfony/dependency-injection": "^7.0|^8.0",
"symfony/http-kernel": "^7.0|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.89.1",
"phpunit/phpunit": "^10.5.58",
"symfony/framework-bundle": "^7.3.6",
"vimeo/psalm": "^6.13.1"
},
"autoload": {
"psr-4": {
"Luzrain\\TelegramBotBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Luzrain\\TelegramBotBundle\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
}
}