-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 888 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 888 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
{
"name": "alirezax5/telegram-base",
"description": "Telegram Bot Base Framework (project skeleton).",
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"vlucas/phpdotenv": "^5.6",
"alirezax5/telegram-bot-php": "^2.5",
"monolog/monolog": "^3.9",
"illuminate/database": "^12.34",
"php-amqplib/php-amqplib": "^2.8",
"symfony/filesystem": "^7.3"
},
"autoload": {
"psr-4": {
"alirezax5\\TelegramBase\\App\\": "App/",
"alirezax5\\TelegramBase\\Plugin\\": "Plugin/",
"Database\\": "Database/",
"Functions\\": "Functions/",
"Migration\\": "Migration/"
},
"files": [
"App/Config.php",
"App/Language/helpers.php",
"App/Button/helper.php"
]
},
"scripts": {
"post-create-project-cmd": [
"php App/Setup/Setup.php"
]
}
}