Skip to content

Commit

Permalink
#4 add desc for config key
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Jul 18, 2024
1 parent 43ffb1f commit 2af943b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/Config/Apis.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
<?php
return [
/**
*
* The name of the package
*/
'name' => 'Apis',
/**
*
* The version of the package
*/
'version' => '1.0.7',
/**
*
* The version number of the package
*/
'versionNum' => '107',
/**
*
* enable input log for all requests default is false
*
*/
'enable_input_log' => env("APIS_ENABLE_INPUT_LOG", false), // Enable input log for all requests
/**
*
* enable output log for all requests default is false
*
*/
'enable_output_log' => env("APIS_ENABLE_OUTPUT_LOG", false), // Enable output log for all requests
];

0 comments on commit 2af943b

Please sign in to comment.