|
| 1 | +<?php |
| 2 | + |
| 3 | +return [ |
| 4 | + /* |
| 5 | + * This setting controls whether data should be sent to Ray. |
| 6 | + * |
| 7 | + * By default, `ray()` will only transmit data in non-production environments. |
| 8 | + */ |
| 9 | + 'enable' => env('RAY_ENABLED', true), |
| 10 | + |
| 11 | + /* |
| 12 | + * When enabled, all cache events will automatically be sent to Ray. |
| 13 | + */ |
| 14 | + 'send_cache_to_ray' => env('SEND_CACHE_TO_RAY', false), |
| 15 | + |
| 16 | + /* |
| 17 | + * When enabled, all things passed to `dump` or `dd` |
| 18 | + * will be sent to Ray as well. |
| 19 | + */ |
| 20 | + 'send_dumps_to_ray' => env('SEND_DUMPS_TO_RAY', true), |
| 21 | + |
| 22 | + /* |
| 23 | + * When enabled all job events will automatically be sent to Ray. |
| 24 | + */ |
| 25 | + 'send_jobs_to_ray' => env('SEND_JOBS_TO_RAY', false), |
| 26 | + |
| 27 | + /* |
| 28 | + * When enabled, all things logged to the application log |
| 29 | + * will be sent to Ray as well. |
| 30 | + */ |
| 31 | + 'send_log_calls_to_ray' => env('SEND_LOG_CALLS_TO_RAY', false), |
| 32 | + |
| 33 | + /* |
| 34 | + * When enabled, all queries will automatically be sent to Ray. |
| 35 | + */ |
| 36 | + 'send_queries_to_ray' => env('SEND_QUERIES_TO_RAY', false), |
| 37 | + |
| 38 | + /** |
| 39 | + * When enabled, all duplicate queries will automatically be sent to Ray. |
| 40 | + */ |
| 41 | + 'send_duplicate_queries_to_ray' => env('SEND_DUPLICATE_QUERIES_TO_RAY', false), |
| 42 | + |
| 43 | + /* |
| 44 | + * When enabled, slow queries will automatically be sent to Ray. |
| 45 | + */ |
| 46 | + 'send_slow_queries_to_ray' => env('SEND_SLOW_QUERIES_TO_RAY', false), |
| 47 | + |
| 48 | + /* |
| 49 | + * When enabled, all requests made to this app will automatically be sent to Ray. |
| 50 | + */ |
| 51 | + 'send_requests_to_ray' => env('SEND_REQUESTS_TO_RAY', false), |
| 52 | + |
| 53 | + /** |
| 54 | + * When enabled, all Http Client requests made by this app will be automatically sent to Ray. |
| 55 | + */ |
| 56 | + 'send_http_client_requests_to_ray' => env('SEND_HTTP_CLIENT_REQUESTS_TO_RAY', false), |
| 57 | + |
| 58 | + /* |
| 59 | + * When enabled, all views that are rendered automatically be sent to Ray. |
| 60 | + */ |
| 61 | + 'send_views_to_ray' => env('SEND_VIEWS_TO_RAY', false), |
| 62 | + |
| 63 | + /* |
| 64 | + * When enabled, all exceptions will be automatically sent to Ray. |
| 65 | + */ |
| 66 | + 'send_exceptions_to_ray' => env('SEND_EXCEPTIONS_TO_RAY', true), |
| 67 | + |
| 68 | + /* |
| 69 | + * The host used to communicate with the Ray app. |
| 70 | + * When using Docker on Mac or Windows, you can replace localhost with 'host.docker.internal' |
| 71 | + * When using Homestead with the VirtualBox provider, you can replace localhost with '10.0.2.2' |
| 72 | + * When using Homestead with the Parallels provider, you can replace localhost with '10.211.55.2' |
| 73 | + */ |
| 74 | + 'host' => env('RAY_HOST', 'host.docker.internal'), |
| 75 | + |
| 76 | + /* |
| 77 | + * The port number used to communicate with the Ray app. |
| 78 | + */ |
| 79 | + 'port' => env('RAY_PORT', 23517), |
| 80 | + |
| 81 | + /* |
| 82 | + * Absolute base path for your sites or projects in Homestead, |
| 83 | + * Vagrant, Docker, or another remote development server. |
| 84 | + */ |
| 85 | + 'remote_path' => env('RAY_REMOTE_PATH', null), |
| 86 | + |
| 87 | + /* |
| 88 | + * Absolute base path for your sites or projects on your local |
| 89 | + * computer where your IDE or code editor is running on. |
| 90 | + */ |
| 91 | + 'local_path' => env('RAY_LOCAL_PATH', null), |
| 92 | + |
| 93 | + /* |
| 94 | + * When this setting is enabled, the package will not try to format values sent to Ray. |
| 95 | + */ |
| 96 | + 'always_send_raw_values' => false, |
| 97 | +]; |
0 commit comments