boost.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. declare(strict_types=1);
  3. return [
  4. /*
  5. |--------------------------------------------------------------------------
  6. | Boost Master Switch
  7. |--------------------------------------------------------------------------
  8. |
  9. | This option may be used to disable all Boost functionality - which
  10. | will prevent Boost's routes from being registered and will also
  11. | disable Boost's browser logging functionality from operating.
  12. |
  13. */
  14. 'enabled' => env('BOOST_ENABLED', true),
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Boost Browser Logs Watcher
  18. |--------------------------------------------------------------------------
  19. |
  20. | The following option may be used to enable or disable the browser logs
  21. | watcher feature within Laravel Boost. The log watcher will read any
  22. | errors within the browser's console to give Boost better context.
  23. |
  24. */
  25. 'browser_logs_watcher' => env('BOOST_BROWSER_LOGS_WATCHER', true),
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Boost Executables Paths
  29. |--------------------------------------------------------------------------
  30. |
  31. | These options allow you to specify custom paths for the executables that
  32. | Boost uses. When configured, they take precedence over the automatic
  33. | discovery mechanism. Leave empty to use defaults from your $PATH.
  34. |
  35. */
  36. 'executable_paths' => [
  37. 'php' => env('BOOST_PHP_EXECUTABLE_PATH'),
  38. 'composer' => env('BOOST_COMPOSER_EXECUTABLE_PATH'),
  39. 'npm' => env('BOOST_NPM_EXECUTABLE_PATH'),
  40. 'vendor_bin' => env('BOOST_VENDOR_BIN_EXECUTABLE_PATH'),
  41. 'current_directory' => env('BOOST_CURRENT_DIRECTORY_EXECUTABLE_PATH', base_path()),
  42. ],
  43. ];