-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 999 Bytes
/
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
{
"name": "lukas-staab/deepl-translation-telegram-bot",
"description": "description",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Lukas Staab",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3",
"longman/telegram-bot": "^0.74.0",
"guzzlehttp/guzzle": "^7.4",
"vlucas/phpdotenv": "^5.4",
"symfony/console": "^5.4",
"monolog/monolog": "^2.3",
"symfony/polyfill-php80": "*",
"ext-json": "*"
}
,
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4" : {
"Longman\\TelegramBot\\Commands\\UserCommands\\" : "lib/tg/UserCommands",
"Longman\\TelegramBot\\Commands\\AdminCommands\\" : "lib/tg/AdminCommands",
"Longman\\TelegramBot\\Commands\\SystemCommands\\" : "lib/tg/SystemCommands",
"" : "lib/"
}
}
}