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