-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
38 lines (38 loc) · 1020 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
35
36
37
38
{
"name": "telegram-subscene-robot/telegram-subscene-robot",
"description": "The Sublandbot Source Code",
"keywords": [
"robot",
"telegram",
"subscene"
],
"type": "project",
"require": {
"php": "^7.4",
"ext-json": "*",
"ext-curl": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-pdo": "*",
"longman/telegram-bot": "0.71.0",
"vlucas/phpdotenv": "^5.2",
"illuminate/database": "^8.16",
"monolog/monolog": "^2.1"
},
"autoload": {
"files": [
"src/UserCommand.php"
],
"psr-4": {
"SubLand\\Models\\": "src/Models",
"SubLand\\Migrations\\": "src/Migrations",
"SubLand\\Utilities\\": "src/Utilities",
"SubLand\\Exceptions\\": "src/Exceptions",
"SubLand\\Traits\\": "src/Traits"
}
},
"require-dev": {
"symfony/var-dumper": "^5.1",
"robmorgan/phinx": "^0.12.4"
}
}