File tree 3 files changed +26
-1
lines changed
3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 11
11
},
12
12
"require" : {
13
13
"php" : " >=8.1" ,
14
- "minicli/minicli" : " ^4.1.0 " ,
14
+ "minicli/minicli" : " ^4.2 " ,
15
15
"minicli/command-help" : " ^1.0"
16
16
},
17
17
"require-dev" : {
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare (strict_types=1 );
4
+
5
+ use Minicli \Logging \LogLevel ;
6
+ use Minicli \Logging \LogType ;
7
+
8
+ return [
9
+ /****************************************************************************
10
+ * Logging Configuration
11
+ * --------------------------------------------------------------------------
12
+ *
13
+ * This configuration defines the logging settings for your application.
14
+ *****************************************************************************/
15
+
16
+ 'logging ' => [
17
+ 'type ' => LogType::SINGLE ->value ,
18
+
19
+ 'level ' => LogLevel::INFO ->value ,
20
+
21
+ 'timestamp_format ' => 'Y-m-d H:i:s ' ,
22
+ ],
23
+ ];
Original file line number Diff line number Diff line change
1
+ *
2
+ ! .gitignore
You can’t perform that action at this time.
0 commit comments