tastyigniter / ti-ext-debugbar
Easily see what's going on under the hood of your TastyIgniter application.
Fund package maintenance!
tastyigniter
Open Collective
Requires
- barryvdh/laravel-debugbar: ~3.0
- barryvdh/laravel-ide-helper: ^v3.0.0
- itsgoingd/clockwork: ^5.0
- tastyigniter/core: ^v4.0
Requires (Dev)
- larastan/larastan: ^2.4
- laravel/pint: ^1.2
- pestphp/pest: ^2.5
- pestphp/pest-plugin-laravel: ^2.0
- sampoyigi/testbench: ^1.0
README
Introduction
The TastyIgniter DebugBar extension a seamless integration of barryvdh/laravel-debugbar and ide-helper, is a powerful tool for developers. It provides a convenient way to profile your TastyIgniter application and generate helper files for IDEs, making local development a breeze.
Features
- Profiling: Measure and visualize the performance of your application.
- Database Queries: Monitor and optimize your database queries.
- IDE Helper: Generate helper files for your IDE to improve code completion and navigation.
Installation
You can install the extension via composer using the following command:
composer require tastyigniter/ti-ext-debugbar:"^4.0" -W
Getting started
To enable the DebugBar, set APP_DEBUG
to true
in your .env
file. Once enabled, the DebugBar will appear at the bottom of all admin pages. Please note, you must be logged in as an admin to view the DebugBar on the frontend.
Usage
Profiling
You can measure the time of your code execution by using the Debugbar
facade:
use Debugbar; Debugbar::startMeasure('render','Time for rendering'); // Do something Debugbar::stopMeasure('render');
Generating IDE Helper files
To generate IDE helper files, which improve code completion and navigation in your IDE, run the following command:
php artisan ide-helper:generate
Changelog
Please see CHANGELOG for more information on what has changed recently.
Reporting issues
If you encounter a bug in this extension, please report it using the Issue Tracker on GitHub.
Contributing
Contributions are welcome! Please read TastyIgniter's contributing guide.
Security vulnerabilities
For reporting security vulnerabilities, please see our our security policy.
License
TastyIgniter Coupons extension is open-source software licensed under the MIT license.