ignition.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Editor
  6. |--------------------------------------------------------------------------
  7. |
  8. | Choose your preferred editor to use when clicking any edit button.
  9. |
  10. | Supported: "phpstorm", "vscode", "vscode-insiders",
  11. | "sublime", "atom"
  12. |
  13. */
  14. 'editor' => env('IGNITION_EDITOR', 'phpstorm'),
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Theme
  18. |--------------------------------------------------------------------------
  19. |
  20. | Here you may specify which theme Ignition should use.
  21. |
  22. | Supported: "light", "dark", "auto"
  23. |
  24. */
  25. 'theme' => env('IGNITION_THEME', 'light'),
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Sharing
  29. |--------------------------------------------------------------------------
  30. |
  31. | You can share local errors with colleagues or others around the world.
  32. | Sharing is completely free and doesn't require an account on Flare.
  33. |
  34. | If necessary, you can completely disable sharing below.
  35. |
  36. */
  37. 'enable_share_button' => env('IGNITION_SHARING_ENABLED', true),
  38. /*
  39. |--------------------------------------------------------------------------
  40. | Register Ignition commands
  41. |--------------------------------------------------------------------------
  42. |
  43. | Ignition comes with an additional make command that lets you create
  44. | new solution classes more easily. To keep your default Laravel
  45. | installation clean, this command is not registered by default.
  46. |
  47. | You can enable the command registration below.
  48. |
  49. */
  50. 'register_commands' => env('REGISTER_IGNITION_COMMANDS', false),
  51. /*
  52. |--------------------------------------------------------------------------
  53. | Ignored Solution Providers
  54. |--------------------------------------------------------------------------
  55. |
  56. | You may specify a list of solution providers (as fully qualified class
  57. | names) that shouldn't be loaded. Ignition will ignore these classes
  58. | and possible solutions provided by them will never be displayed.
  59. |
  60. */
  61. 'ignored_solution_providers' => [
  62. \Facade\Ignition\SolutionProviders\MissingPackageSolutionProvider::class,
  63. ],
  64. /*
  65. |--------------------------------------------------------------------------
  66. | Runnable Solutions
  67. |--------------------------------------------------------------------------
  68. |
  69. | Some solutions that Ignition displays are runnable and can perform
  70. | various tasks. Runnable solutions are enabled when your app has
  71. | debug mode enabled. You may also fully disable this feature.
  72. |
  73. */
  74. 'enable_runnable_solutions' => env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', null),
  75. /*
  76. |--------------------------------------------------------------------------
  77. | Remote Path Mapping
  78. |--------------------------------------------------------------------------
  79. |
  80. | If you are using a remote dev server, like Laravel Homestead, Docker, or
  81. | even a remote VPS, it will be necessary to specify your path mapping.
  82. |
  83. | Leaving one, or both of these, empty or null will not trigger the remote
  84. | URL changes and Ignition will treat your editor links as local files.
  85. |
  86. | "remote_sites_path" is an absolute base path for your sites or projects
  87. | in Homestead, Vagrant, Docker, or another remote development server.
  88. |
  89. | Example value: "/home/vagrant/Code"
  90. |
  91. | "local_sites_path" is an absolute base path for your sites or projects
  92. | on your local computer where your IDE or code editor is running on.
  93. |
  94. | Example values: "/Users/<name>/Code", "C:\Users\<name>\Documents\Code"
  95. |
  96. */
  97. 'remote_sites_path' => env('IGNITION_REMOTE_SITES_PATH', ''),
  98. 'local_sites_path' => env('IGNITION_LOCAL_SITES_PATH', ''),
  99. /*
  100. |--------------------------------------------------------------------------
  101. | Housekeeping Endpoint Prefix
  102. |--------------------------------------------------------------------------
  103. |
  104. | Ignition registers a couple of routes when it is enabled. Below you may
  105. | specify a route prefix that will be used to host all internal links.
  106. |
  107. */
  108. 'housekeeping_endpoint_prefix' => '_ignition',
  109. ];