-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
72 lines (72 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "boshurik/telegram-bot-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "Telegram bot bundle",
"authors": [
{
"name": "Alexander Borisov",
"email": "[email protected]"
},
{
"name": "Community",
"homepage": "https://github.com/BoShurik/TelegramBotBundle/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"BoShurik\\TelegramBotBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BoShurik\\TelegramBotBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"telegram-bot/api": "^2.3.14"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.23.0",
"symfony/phpunit-bridge": "^7.0.1",
"symfony/security-http": "^5.4 || ^6.0 || ^7.0",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0",
"symfony/messenger": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0",
"vimeo/psalm": "~4.30.0",
"psalm/plugin-symfony": "^4.0"
},
"suggest": {
"symfony/security-guard": "Required to implement user authentication through Telegram",
"symfony/http-client": "Required to use third party http client",
"symfony/messenger": "Required to handle messages with queues"
},
"scripts": {
"test": "vendor/bin/simple-phpunit --colors=always",
"coverage": "XDEBUG_MODE=coverage vendor/bin/simple-phpunit --coverage-html build/coverage",
"cs-check": "vendor/bin/php-cs-fixer fix --allow-risky=yes --diff --ansi --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes --diff --ansi",
"psalm": "vendor/bin/psalm",
"dev": [
"@cs-fix",
"@psalm",
"@test"
],
"checks": [
"@cs-check",
"@psalm",
"@test"
]
},
"extra": {
"branch-alias": {
"dev-master": "6.0.x-dev"
}
}
}