-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "mohammad-zarifiyan/laravel-telegram-bot",
"description": "A Laravel package that helps you to easily create scalable Telegram bots and send notifications through Telegram.",
"type": "library",
"keywords": ["Telegram", "Laravel", "PHP"],
"version": "6.8.5",
"license": "MIT",
"require": {
"php": "^8",
"laravel/framework": ">=7",
"guzzlehttp/guzzle": ">=5",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"MohammadZarifiyan\\Telegram\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"authors": [
{
"name": "Mohammad Zarifiyan",
"email": "mohammadzarifiyan82@gmail.com"
}
],
"extra": {
"laravel": {
"providers": [
"MohammadZarifiyan\\Telegram\\Providers\\TelegramServiceProvider"
],
"aliases": {
"Telegram": "MohammadZarifiyan\\Telegram\\Facades\\Telegram"
}
}
}
}