https://github.com/rareloop/lumberjack-var-dumper-server
https://github.com/rareloop/lumberjack-var-dumper-server
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rareloop/lumberjack-var-dumper-server
- Owner: Rareloop
- License: mit
- Created: 2018-07-12T11:09:23.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-12T11:14:05.000Z (almost 8 years ago)
- Last Synced: 2024-12-29T07:43:13.733Z (over 1 year ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Lumberjack Var Dumper Server
This requires Hatchet, if you haven't already set it up for your theme follow [these instructions](https://github.com/Rareloop/hatchet/blob/master/README.md) first.
## Installation
```
composer require rareloop/lumberjack-var-dumper-server
```
Once installed, register the Service Provider in config/app.php within your theme:
```php
'providers' => [
...
Rareloop\Lumberjack\VarDumperServer\VarDumperServerServiceProvider::class,
...
],
```
## Usage
A new command is added to Hatchet, which you can run with:
```
php hatchet dump-server
```
Once running, any calls to `dump()` within you theme code will be echo'd out in the console.