-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 891 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 891 Bytes
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
{
"name": "phptcloud/telegram-api",
"description": "Библиотека для работы с Telegram API",
"version": "1.0.0",
"type": "library",
"keywords": ["telegram", "bot", "api"],
"authors": [
{
"name": "Юдов Алексей",
"email": "tcloud.ax@gmail.com",
"role": "Автор"
},
{
"name": "Пешко Илья",
"email": "peshkoi@mail.ru",
"role": "Автор"
}
],
"autoload": {
"psr-4": {
"PHPTCloud\\TelegramApi\\": "src/"
}
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^6.0|^7.0",
"doganoo/php-algorithms": "^2.1"
},
"require-dev": {
"larapack/dd": "^1.1",
"symfony/dotenv": "^6.4",
"friendsofphp/php-cs-fixer": "^3.48"
},
"scripts": {
"cs_fixer": "vendor/bin/php-cs-fixer fix --allow-risky=yes --using-cache=no --config .php_cs.php"
}
}