-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
34 lines (34 loc) · 848 Bytes
/
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
{
"name": "halaei/telegram-bot",
"description": "The Unofficial Telegram Bot API PHP SDK",
"keywords": ["telegram", "telegram bot", "telegram bot api", "telegram sdk", "telegram php", "laravel telegram", "laravel"],
"type": "library",
"homepage": "https://github.com/irazasyed/telegram-bot-sdk",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Syed Irfaq R.",
"email": "[email protected]",
"homepage": "https://github.com/irazasyed"
}
],
"require": {
"php": "^7.3|^8.0",
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/support": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.4",
"mockery/mockery": "^1.4.3"
},
"autoload": {
"psr-4": {
"Telegram\\Bot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Telegram\\Bot\\Tests\\": "tests/"
}
}
}