forked from telegram-bot-sdk/telegram-bot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.08 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "telegram-bot-sdk/telegram-bot-sdk",
"description": "The Telegram Bot API PHP SDK",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"telegram",
"chatbot",
"telegram php",
"telegram bot",
"telegram chatbot",
"telegram bot api",
"telegram bot sdk",
"telegram-bot-sdk",
"telegram bot php sdk",
"telegram bot api php sdk",
"php telegram bot"
],
"authors": [
{
"name": "Irfaq Syed",
"email": "[email protected]",
"homepage": "https://github.com/irazasyed"
},
{
"name": "Telegram Bot SDK Community",
"homepage": "https://github.com/telegram-bot-sdk/telegram-bot-sdk/graphs/contributors"
}
],
"homepage": "https://github.com/telegram-bot-sdk/telegram-bot-sdk",
"require": {
"php": ">=8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.5.1",
"illuminate/container": "^10",
"illuminate/events": "^10",
"illuminate/support": "^10",
"telegram-bot-sdk/addon-manager": "^1.0@dev"
},
"require-dev": {
"fakerphp/faker": "^1.21",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-mock": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"rector/rector": "^0.16"
},
"suggest": {
"telegram-bot-sdk/laravel": "Laravel Support for Telegram Bot SDK."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Telegram\\Bot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"thecodingmachine/discovery": true,
"pestphp/pest-plugin": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
}
},
"scripts": {
"refactor": "rector --debug",
"test": [
"@test:lint",
"@test:refactor",
"@test:unit"
],
"test:coverage": "pest --coverage --colors=always",
"test:lint": "parallel-lint . --blame --colors --exclude vendor",
"test:refactor": "rector --dry-run",
"test:unit": "pest --colors=always"
}
}