-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
55 lines (55 loc) · 1.5 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
{
"name": "php-telegram-bot/laravel",
"description": "Integrates PHP Telegram Bot into Laravel.",
"license": "MIT",
"authors": [
{
"name": "Avtandil Kikabidze aka LONGMAN",
"email": "[email protected]",
"homepage": "http://longman.me",
"role": "Maintainer, Developer"
},
{
"name": "Tii",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/php-telegram-bot/laravel",
"keywords": ["laravel", "telegram", "bot"],
"require": {
"illuminate/support": "~7|~8|~9|~10",
"longman/telegram-bot": "^0.81",
"ext-pcntl": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"symfony/process": "^5.3"
},
"autoload": {
"psr-4": {
"PhpTelegramBot\\Laravel\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.1.x-dev"
},
"laravel": {
"providers": [
"PhpTelegramBot\\Laravel\\TelegramServiceProvider"
],
"aliases": {
"CallbackButton": "PhpTelegramBot\\Laravel\\Facades\\CallbackButton",
"Telegram": "PhpTelegramBot\\Laravel\\Facades\\Telegram"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}