-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
60 lines (60 loc) · 1.45 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
{
"name": "telegram-bot-php/core",
"description": "A PHP library that makes using Telegram Bot API much easier.",
"keywords": [
"php",
"library",
"telegram",
"update-handler",
"bot",
"core"
],
"license": "MIT",
"homepage": "https://github.com/telegram-bot-php/core",
"support": {
"issues": "https://github.com/telegram-bot-php/core/issues",
"source": "https://github.com/telegram-bot-php/core"
},
"authors": [
{
"name": "Shahrad Elahi",
"email": "shahrad@litehex.com"
},
{
"name": "LiteHex",
"email": "opensource@litehex.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit --colors=always --configuration phpunit.xml"
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.8",
"symfony/dotenv": "^v7.1"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"phpunit/phpunit": "^11.2",
"psr/log": "^1.1|^2.0|^3.0"
},
"autoload": {
"psr-4": {
"TelegramBot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TelegramBotTest\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}