digital-drifter / laravel-chrome-logger
Laravel bridge for ChromePhp. Log PHP output to the Chrome console.
Installs: 718
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
Type:package
Requires
- php: >=7.1.0
- ccampbell/chromephp: ^4.1.0
- illuminate/config: ^5.6.15
- illuminate/support: ^5.6.15
Requires (Dev)
- phpunit/phpunit: ^7.0.3
This package is not auto-updated.
Last update: 2025-03-23 10:30:46 UTC
README
Laravel bridge for ChromePhp.
Installation
This package requires the Chrome Logger extension.
Once you've installed the extension, add this package to your project via composer:
$ composer require --dev digital-drifter/laravel-chrome-logger
Laravel 5.5 will automatically register the service provider through auto-discovery.
Previous versions of the framework just add the service provider in config/app.php
file:
'providers' => [ // ... DigitalDrifter\LaravelChromeLogger\LaravelChromeLoggerServiceProvider::class, ];
Available Methods
All methods exposed on the ChromePhp
class are available. The following comes directly from the class:
/** * gets instance of this class * * @return ChromePhp */ public static function getInstance(); /** * logs a variable to the console * * @param mixed $data,... unlimited OPTIONAL number of additional logs [...] * @return void */ public static function log(); /** * logs a warning to the console * * @param mixed $data,... unlimited OPTIONAL number of additional logs [...] * @return void */ public static function warn(); /** * logs an error to the console * * @param mixed $data,... unlimited OPTIONAL number of additional logs [...] * @return void */ public static function error(); /** * sends a group log * * @param string value */ public static function group(); /** * sends an info log * * @param mixed $data,... unlimited OPTIONAL number of additional logs [...] * @return void */ public static function info(); /** * sends a collapsed group log * * @param string value */ public static function groupCollapsed(); /** * ends a group log * * @param string value */ public static function groupEnd(); /** * sends a table log * * @param string value */ public static function table(); /** * adds a setting * * @param string key * @param mixed value * @return void */ public function addSetting($key, $value); /** * add ability to set multiple settings in one call * * @param array $settings * @return void */ public function addSettings(array $settings); /** * gets a setting * * @param string key * @return mixed */ public function getSetting($key);
Usage
Dependency Injection
As with any other class registered in Laravel's service container, you may inject an instance into your code like:
use DigitalDrifter\LaravelChromeLogger\LaravelChromeLogger; ... /** * LaravelChromeLogger $logger */ protected $logger; public function __construct(LaravelChromeLogger $logger) { $this->logger = $logger; }
Facade
Using the provided facade:
public function log(string $message) { LaravelChromeLogger::log($message); }
Helper Method
The console()
helper method is available.
public function log(string $level = "log", string $message) { console($level, $message); }
Credits
All credit to Craig Cambell for providing the basis to this package.