hsndmr / cappadocia-viewer-for-laravel
Cappadocia Viewer for Laravel
Requires
- php: ^8.1
- illuminate/contracts: ^10.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- guzzlehttp/guzzle: ^7.6
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.0
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
This package is not auto-updated.
Last update: 2024-11-10 00:23:46 UTC
README
Installation
Prior to installing this package, ensure that you have already installed Cappadocia Viewer
You can install the package via composer:
composer require hsndmr/cappadocia-viewer-for-laravel --dev
You can publish the config file with:
php artisan vendor:publish --tag="cappadocia-viewer"
This is the contents of the published config file:
return [ 'server_url' => env('CAPPADOCIA_VIEWER_SERVER_URL', 'http://127.0.0.1:9091'), 'timeout' => env('CAPPADOCIA_VIEWER_TIMEOUT', 3), 'enabled' => env('CAPPADOCIA_VIEWER_ENABLED', true), 'watch_logs' => env('CAPPADOCIA_VIEWER_WATCH_LOGS', true), 'watch_jobs' => env('CAPPADOCIA_VIEWER_WATCH_JOBS', false), 'watch_queries' => env('CAPPADOCIA_VIEWER_WATCH_QUERIES', false), ];
Usage
Showing Queries
You can show queries by using cappadocia
helper function.
cappadocia()->watchQueries(); User::latest()->first(); cappadocia()->stopWatchingQueries(); // This query will not be shown in the viewer User::first()->first();
If you want to show all queries, you can add CAPPADOCIA_VIEWER_WATCH_QUERIES=true
to your .env file.
Showing Jobs
You can show jobs by using cappadocia
helper function.
cappadocia()->watchJobs(); CappadociaViewerJob::dispatchSync('viewer'); cappadocia()->stopWatchingJobs(); // This job will not be shown in the viewer CappadociaViewerJob::dispatchSync('another viewer');
If you are utilizing Laravel Horizon, you can insert CAPPADOCIA_VIEWER_WATCH_JOBS=true
into your .env file. This will enable you to view all jobs in the viewer
CappadociaViewerJob::dispatch('viewer');
Showing Logs
Logs are shown by default. If you want to disable it, you can add CAPPADOCIA_VIEWER_WATCH_LOGS=false
to your .env file.
Log::info('This log will be shown in the viewer');
Showing Requests
If you want to show requests, you can add CAPPADOCIA_VIEWER_WATCH_REQUESTS=true
to your .env file. After that, you can see all requests in the viewer.
Custom Messages
If you want to show custom messages, you can use cappadocia
helper function.
cappadocia('This is custom message') ->send([ 'custom' => 'data', ]); cappadocia('This is custom message with Badge') ->setBadge('Badge') ->send([ 'custom' => 'data', ]);
Disabling Cappadocia Viewer
To disable the Cappadocia Viewer, you can include CAPPADOCIA_VIEWER_ENABLED=false
in your .env file. This could be particularly useful if you wish to disable it within a testing environment.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.