-
Notifications
You must be signed in to change notification settings - Fork 674
/
composer.json
92 lines (92 loc) · 2.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "irazasyed/telegram-bot-sdk",
"description": "The Unofficial Telegram Bot API PHP SDK",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"telegram",
"telegram bot",
"telegram bot api",
"telegram sdk",
"telegram php",
"laravel telegram",
"laravel"
],
"authors": [
{
"name": "Irfaq Syed",
"email": "[email protected]",
"homepage": "https://github.com/irazasyed"
}
],
"homepage": "https://github.com/irazasyed/telegram-bot-sdk",
"require": {
"php": ">=8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.5.1",
"guzzlehttp/psr7": "^2.5",
"illuminate/support": "9 - 11",
"league/event": "^2.2 || ^3.0",
"psr/container": "^1.1 || ^2.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"irazasyed/docgen": "^0.2",
"pestphp/pest": "^1.22 || ^2.0 || ^3.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpspec/prophecy": "^1.17",
"phpspec/prophecy-phpunit": "^2.0",
"rector/rector": "^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^1.0.0"
},
"suggest": {
"illuminate/container": "Hold dependencies to be injected in commands constructors",
"irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Telegram\\Bot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Telegram\\Bot\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true,
"pestphp/pest-plugin": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
},
"laravel": {
"aliases": {
"Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
},
"providers": [
"Telegram\\Bot\\Laravel\\TelegramServiceProvider"
]
}
},
"scripts": {
"docgen": "docgen",
"refactor": "rector --debug",
"test": [
"@test:lint",
"@test:refactor",
"@test:unit"
],
"test:coverage": "pest --coverage --colors=always",
"test:docgen": "docgen -d",
"test:lint": "parallel-lint . --blame --colors --exclude vendor",
"test:refactor": "rector --dry-run",
"test:unit": "pest --colors=always"
}
}