49 lines
839 B
PHP
49 lines
839 B
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' => [
|
||
|
'cache:*',
|
||
|
'completion',
|
||
|
'config:*',
|
||
|
'db:*',
|
||
|
'debugbar:*',
|
||
|
'event:*',
|
||
|
'ide-helper:*',
|
||
|
'inspire',
|
||
|
'key:generate',
|
||
|
'list',
|
||
|
'make:*',
|
||
|
'migrate:*',
|
||
|
'model:prune',
|
||
|
'notifications:table',
|
||
|
'optimize:*',
|
||
|
'package:discover',
|
||
|
'route:*',
|
||
|
'serve',
|
||
|
'schedule:*',
|
||
|
'schema:dump',
|
||
|
'session:table',
|
||
|
'storage:link',
|
||
|
'stub:publish',
|
||
|
'test',
|
||
|
'theme:*',
|
||
|
'ui:*',
|
||
|
'vendor:publish',
|
||
|
'view:*',
|
||
|
],
|
||
|
|
||
|
];
|