-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·57 lines (57 loc) · 1.5 KB
/
composer.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.5 KB
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
{
"name": "otajonov/televel",
"description": "A highly customizable Laravel library for managing Telegram bots",
"type": "library",
"license": "MIT",
"keywords": [
"telegram bot laravel",
"laravel telegram bot",
"telegram bot laravel library",
"laravel telegram",
"laravel telegram bot package",
"laravel telegram bot televel",
"televel"
],
"authors": [
{
"name": "Elbek Shukurullayev",
"homepage": "https://vermino.uz"
},
{
"name": "Ro'zmat Otajonov",
"homepage": "https://otajonov.dev"
}
],
"homepage": "https://github.com/Otajonov/televel",
"support": {
"issues": "https://github.com/Otajonov/televel/issues",
"source": "https://github.com/Otajonov/laravel",
"docs": "https://televel.gitbook.io"
},
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8",
"laravel/framework": "^11.12"
},
"autoload": {
"psr-4": {
"Televel\\Bot\\": "src/Bot/"
}
},
"extra": {
"laravel": {
"providers": [
"Televel\\Bot\\TelevelServiceProvider"
],
"aliases": {
"Televel": "Televel\\Bot\\Facades\\Televel"
},
"branch-alias": {
"dev-main": "1.x-dev"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"version": "1.1"
}