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.

126 lines
4.4 KiB

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