forked from telegram-bot-sdk/laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.2 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
88
89
{
"name": "telegram-bot-sdk/laravel",
"description": "Laravel Package for Telegram Bot SDK",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"telegram bot sdk laravel",
"php telegram bot",
"lumen telegram bot",
"laravel telegram",
"laravel telegram bot",
"laravel telegram bot sdk",
"telegram-bot-sdk"
],
"authors": [
{
"name": "Irfaq Syed",
"homepage": "https://github.com/irazasyed"
}
],
"homepage": "https://github.com/telegram-bot-sdk/laravel",
"support": {
"issues": "https://github.com/telegram-bot-sdk/laravel/issues",
"forum": "https://phpchat.co",
"chat": "https://t.me/PHPChatCo",
"source": "https://github.com/telegram-bot-sdk/laravel",
"docs": "https://telegram-bot-sdk.com"
},
"require": {
"illuminate/console": "^10",
"telegram-bot-sdk/telegram-bot-sdk": "^4.0@dev"
},
"require-dev": {
"irazasyed/docgen": "^0.2",
"pestphp/pest": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"rector/rector": "^0.16"
},
"suggest": {
"irazasyed/larasupport": "Allows you to use any Laravel Package in Lumem"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Telegram\\Bot\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Telegram\\Bot\\Laravel\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"thecodingmachine/discovery": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
},
"laravel": {
"aliases": {
"Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
},
"providers": [
"Telegram\\Bot\\Laravel\\TelegramServiceProvider"
]
}
},
"scripts": {
"docgen": "docgen",
"refactor": "rector --debug",
"test": [
"@test:lint",
"@test:refactor",
"@test:unit"
],
"test:coverage": "pest --coverage --colors=always",
"test:docgen": "docgen -d",
"test:lint": "parallel-lint . --blame --colors --exclude vendor",
"test:refactor": "rector --dry-run",
"test:unit": "pest --colors=always"
}
}