-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
68 lines (68 loc) · 1.62 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
{
"name": "exileed/telegram-bot-api",
"description": "The Telegram Bot API PHP",
"keywords": ["telegram", "telegram bot", "telegram bot api", "telegram sdk", "telegram php", "laravel telegram", "laravel"],
"type": "library",
"homepage": "https://github.com/exileed/telegram-bot-sdk",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Syed Irfaq R.",
"email": "syed+gh@lukonet.com",
"homepage": "https://github.com/irazasyed"
},
{
"name": "Dmitriy Kuts (ExileeD)",
"email": "me@exileed.com",
"homepage": "https://exileed.com"
}
],
"require": {
"php": "~7.3 || ~8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0 || ^7.0",
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"league/event": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Telegram\\Bot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Telegram\\Bot\\Tests\\": "tests/"
}
},
"suggest": {
"illuminate/container": "Hold dependencies to be injected in commands constructors"
},
"scripts": {
"test": "phpunit",
"fix": "phpcbf",
"phpcs": "phpcs"
},
"extra": {
"branch-alias": {
"dev-master": "0.3-dev",
"dev-develop": "0.3-dev"
},
"laravel": {
"providers": [
"Telegram\\Bot\\Laravel\\TelegramServiceProvider"
],
"aliases": {
"Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
}
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}