-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.19 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "kseven/telegrambotci4",
"description": "Telegram Bot for CodeIgniter 4",
"license": "MIT",
"type": "library",
"keywords": [
"codeigniter",
"codeigniter4",
"telegram",
"bot"
],
"authors": [
{
"name": "PHP Telegram Bot Team",
"role": "Developer"
},
{
"name": "KSeven",
"email": "anjsuporte@gmail.com",
"role": "Developer (Libraries for codeIgniter 4)"
}
],
"homepage": "https://github.com/KS7ven/TelegramBot-ci4",
"require": {
"php": "^7.4.3 || ^8.0",
"longman/telegram-bot": "*",
"php-telegram-bot/telegram-bot-manager": "^1.8"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"BotTelegram\\": "src"
},
"files": [
"src/Libraries/PHPBot.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Tests\\Support\\": "tests/_support"
}
}
}