the bola v2 website
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Editor
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here you can specify the editor that should be opened when clicking
  9. | code links.
  10. |
  11. | Possible values are 'phpstorm', 'vscode', 'vscode-insiders', 'sublime' and 'atom'.
  12. */
  13. 'editor' => env('IGNITION_EDITOR', 'phpstorm'),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Remote Path Mapping
  17. |--------------------------------------------------------------------------
  18. |
  19. | If you are using a remote dev server, like Laravel Homestead, Docker, or
  20. | even a remote VPS, it will be necessary to specify your path mapping.
  21. | Leaving either one, or both of these, empty or null will not trigger the
  22. | remote URL changes, and will treat your editor links as local files.
  23. |
  24. | 'remote-sites-path' is the full base path of your sites or projects inside
  25. | homestead, Docker, or remote dev servers, for example
  26. | `/home/vagrant/Code`.
  27. | 'local-sites-path' is the full base path of your sites or projects on your
  28. | local computer that your IDE or editor is running on,
  29. | for example `/Users/<name>/Code` or
  30. | `C:\Users\<name>\Documents\Code`.
  31. */
  32. 'remote-sites-path' => env('IGNITION_REMOTE_SITES_PATH', ''),
  33. 'local-sites-path' => env('IGNITION_LOCAL_SITES_PATH', ''),
  34. /*
  35. |--------------------------------------------------------------------------
  36. | Theme
  37. |--------------------------------------------------------------------------
  38. |
  39. | Specify which theme should be used. You can choose between 'light', 'dark' and 'auto'.
  40. |
  41. */
  42. 'theme' => env('IGNITION_THEME', 'light'),
  43. /*
  44. |--------------------------------------------------------------------------
  45. | Ignore solution providers
  46. |--------------------------------------------------------------------------
  47. |
  48. | Here you can specify the fully qualified class names of solution providers
  49. | that should not be used.
  50. |
  51. */
  52. 'ignored_solution_providers' => [
  53. \Facade\Ignition\SolutionProviders\DefaultDbNameSolutionProvider::class,
  54. ],
  55. /*
  56. |--------------------------------------------------------------------------
  57. | Sharing
  58. |--------------------------------------------------------------------------
  59. |
  60. | Ignition allows you to manually share your local errors with colleagues or people around the world.
  61. | Sharing errors is completely free and does not require an account on Flare.
  62. | If you do not want to have the ability to share your local errors, you can disable it here.
  63. |
  64. */
  65. 'enable_share_button' => env('IGNITION_SHARING_ENABLED', true),
  66. ];