You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.7 KiB

4 years ago
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Command
  6. |--------------------------------------------------------------------------
  7. |
  8. | Laravel Zero will always run the command specified below when no command name is
  9. | provided. Consider update the default command for single command applications.
  10. | You cannot pass arguments to the default command because they are ignored.
  11. |
  12. */
  13. 'default' => NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Commands Paths
  17. |--------------------------------------------------------------------------
  18. |
  19. | This value determines the "paths" that should be loaded by the console's
  20. | kernel. Foreach "path" present on the array provided below the kernel
  21. | will extract all "Illuminate\Console\Command" based class commands.
  22. |
  23. */
  24. 'paths' => [app_path('Commands')],
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Added Commands
  28. |--------------------------------------------------------------------------
  29. |
  30. | You may want to include a single command class without having to load an
  31. | entire folder. Here you can specify which commands should be added to
  32. | your list of commands. The console's kernel will try to load them.
  33. |
  34. */
  35. 'add' => [
  36. // ..
  37. ],
  38. /*
  39. |--------------------------------------------------------------------------
  40. | Hidden Commands
  41. |--------------------------------------------------------------------------
  42. |
  43. | Your application commands will always be visible on the application list
  44. | of commands. But you can still make them "hidden" specifying an array
  45. | of commands below. All "hidden" commands can still be run/executed.
  46. |
  47. */
  48. 'hidden' => [
  49. NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,
  50. Symfony\Component\Console\Command\HelpCommand::class,
  51. Illuminate\Console\Scheduling\ScheduleRunCommand::class,
  52. Illuminate\Console\Scheduling\ScheduleFinishCommand::class,
  53. Illuminate\Foundation\Console\VendorPublishCommand::class,
  54. ],
  55. /*
  56. |--------------------------------------------------------------------------
  57. | Removed Commands
  58. |--------------------------------------------------------------------------
  59. |
  60. | Do you have a service provider that loads a list of commands that
  61. | you don't need? No problem. Laravel Zero allows you to specify
  62. | below a list of commands that you don't to see in your app.
  63. |
  64. */
  65. 'remove' => [
  66. // ..
  67. ],
  68. ];