mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Fix disabling of built-in commands when using ./lnms in production It wasn't working correctly after Laravel upstream changes * Use nunomaduro/laravel-console-summary * fix command name Co-authored-by: Tony Murray <murraytony@gmail.com>
59 lines
1.2 KiB
PHP
59 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Hide Commands
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option allows to hide certain commands from the summary output.
|
|
| They will still be available in your application. Wildcards are supported
|
|
|
|
|
| Examples: "make:*", "list"
|
|
|
|
|
*/
|
|
|
|
'hide' => [
|
|
'auth:*',
|
|
'cache:*',
|
|
'clear-compiled',
|
|
'config:cache',
|
|
'config:clear',
|
|
'db:*',
|
|
'debugbar:*',
|
|
'down',
|
|
'dusk',
|
|
'dusk:*',
|
|
'env',
|
|
'event:*',
|
|
'help',
|
|
'ide-helper:*',
|
|
'key:*',
|
|
'list',
|
|
'make:*',
|
|
'migrate:*',
|
|
'notifications:*',
|
|
'optimize:*',
|
|
'package:*',
|
|
'queue:*',
|
|
'release:*',
|
|
'route:*',
|
|
'schedule:*',
|
|
'schema:*',
|
|
'serve',
|
|
'session:*',
|
|
'storage:*',
|
|
'stub:*',
|
|
'test',
|
|
'tinker',
|
|
'translation:*',
|
|
'ui:*',
|
|
'up',
|
|
'vendor:*',
|
|
'view:*',
|
|
'vue-i18n:*',
|
|
'ziggy:*',
|
|
],
|
|
];
|