Add Laravel Debugbar and IDE Helper#29
Open
thinkstylestudio wants to merge 3 commits into
Open
Conversation
[Release 1]
- Add barryvdh/laravel-ide-helper as dev dependency - Publish debugbar and ide-helper config files - Generate initial IDE helper files for facades, models, and PhpStorm meta - Add composer ide-helper script and post-update regeneration - Document DEBUGBAR_ENABLED in .env.example and ignore debugbar storage Co-authored-by: Theron Smith <theron+github@thinkstylestudio.com>
MlKilderkin
approved these changes
May 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #9
Summary
Adds development tooling for debugging and IDE autocompletion:
composer.json; publishesconfig/debugbar.phpand documents optionalDEBUGBAR_ENABLEDin.env.example. Debugbar is enabled whenAPP_DEBUG=true(default).config/ide-helper.php, generated helper files, and Composer scripts to regenerate them after updates.Changes
config/debugbar.phpandconfig/ide-helper.php_ide_helper.php,_ide_helper_models.php, and.phpstorm.meta.phpfor IDE supportcomposer ide-helperscript for full regeneration (models require a DB connection)ide-helper:generateandide-helper:metaoncomposer updatestorage/debugbarin.gitignoreUsage
Debugbar: Visible on local pages when
APP_DEBUG=true. SetDEBUGBAR_ENABLED=falsein.envto disable without turning off debug mode.IDE Helper: After schema changes, run:
(Model docs need MySQL/Lando or use
php artisan ide-helper:models --nowrite -Mfor in-memory SQLite.)