This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 2 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
{
"name": "serogaq/laravel-tgbotapi",
"description": "This package provides methods for working with the telegram bot api, and helpers for receiving updates via webhooks or the long polling method",
"keywords": ["telegram bot", "telegram bot api", "laravel telegram bot", "laravel telegram bot api", "laravel"],
"homepage": "https://github.com/serogaq/laravel-tgbotapi",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "serogaq",
"email": "me@serogaq.com"
}
],
"require": {
"php": ">=8.0.2",
"illuminate/support": "^8.0 || ^9.0",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"nunomaduro/collision": "^5.10 || ^6.1",
"orchestra/testbench": "^6.0 || ^7.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Serogaq\\TgBotApi\\": "src"
},
"files": [
"src/Helpers/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Serogaq\\TgBotApi\\Tests\\": "tests"
},
"files": [
"src/Helpers/Helpers.php"
]
},
"scripts": {
"php:syntax": "parallel-lint . --blame --colors --exclude vendor",
"pint": "vendor/bin/pint -v",
"pint:test": "vendor/bin/pint --test",
"test": "vendor/bin/testbench package:test",
"test:coverage": "php -dxdebug.mode=coverage vendor/bin/phpunit --coverage-html build/coverage-html"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-v1": "1.x-dev"
},
"laravel": {
"providers": [
"Serogaq\\TgBotApi\\Providers\\TgBotApiServiceProvider"
],
"aliases": {
"BotManager": "Serogaq\\TgBotApi\\Facades\\BotManager"
}
}
},
"minimum-stability": "beta",
"prefer-stable": true
}