https://github.com/erlangparasu/laravel-debugbar-vscode
[php lib] Laravel Debugbar VSCode open file button. Provide button to open file path in vscode (work with laravel-debugbar)
https://github.com/erlangparasu/laravel-debugbar-vscode
debugbar laravel php plugin vscode
Last synced: 4 months ago
JSON representation
[php lib] Laravel Debugbar VSCode open file button. Provide button to open file path in vscode (work with laravel-debugbar)
- Host: GitHub
- URL: https://github.com/erlangparasu/laravel-debugbar-vscode
- Owner: erlangparasu
- License: mit
- Created: 2019-12-01T01:03:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-13T09:08:59.000Z (almost 5 years ago)
- Last Synced: 2025-09-10T22:30:01.002Z (5 months ago)
- Topics: debugbar, laravel, php, plugin, vscode
- Language: PHP
- Homepage:
- Size: 53.7 KB
- Stars: 6
- Watchers: 1
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# laravel-debugbar-vscode
Plugin **laravel-debugbar** that provide **button** to open **vscode**
This package code is based on https://github.com/barryvdh/laravel-debugbar
## How to use
Move mouse pointer to text that contains file path, then the button will appear. Click to open the path in vscode :D


## Installation
Require this package with composer. It is recommended to only require the package for development.
```shell
composer require erlangparasu/laravel-debugbar-vscode:"3.x-dev" --dev
```
### Laravel 5.5+:
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
```php
ErlangParasu\DebugbarVscode\ServiceProvider::class,
```
### Lumen:
For Lumen, register a different Provider in `bootstrap/app.php`:
```php
if (env('APP_DEBUG')) {
$app->register(ErlangParasu\DebugbarVscode\LumenServiceProvider::class);
}
```