File tree Expand file tree Collapse file tree 1 file changed +30
-3
lines changed Expand file tree Collapse file tree 1 file changed +30
-3
lines changed Original file line number Diff line number Diff line change 5
5
* Bot configuration
6
6
*/
7
7
'bot ' => [
8
- 'name ' => env ('PHP_TELEGRAM_BOT_NAME ' , '' ),
9
- 'api_key ' => env ('PHP_TELEGRAM_BOT_API_KEY ' , '' ),
8
+ 'name ' => env ('PHP_TELEGRAM_BOT_NAME ' , 'Test Name ' ),
9
+ 'api_key ' => env ('PHP_TELEGRAM_BOT_API_KEY ' , '489567508:AAEJgd80WMYbl7NisJYpkWCJLt2o_0RkpXs ' ),
10
10
],
11
11
12
+ /**
13
+ * Database integration
14
+ */
12
15
'database ' => [
13
16
'enabled ' => false ,
14
- 'connection ' => 'default ' ,
17
+ 'connection ' => env ('DB_CONNECTION ' , 'mysql ' ),
18
+ ],
19
+
20
+ 'commands ' => [
21
+ 'before ' => true ,
22
+ 'paths ' => [
23
+ // Custom command paths
24
+ ],
25
+ 'configs ' => [
26
+ // Custom commands configs
27
+ ],
28
+ ],
29
+
30
+ 'admins ' => [
31
+ // Admin ids
32
+ ],
33
+
34
+ /**
35
+ * Request limiter
36
+ */
37
+ 'limiter ' => [
38
+ 'enabled ' => false ,
39
+ 'interval ' => 1 ,
15
40
],
16
41
42
+ 'upload_path ' => '' ,
43
+ 'download_path ' => '' ,
17
44
];
You can’t perform that action at this time.
0 commit comments