Download the PHP package techsemicolon/laravel-dump-inspector without Composer

On this page you can find all versions of the php package techsemicolon/laravel-dump-inspector. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-dump-inspector

Inspect dumps without interfering actual web page

Laravel has very cool dump() and dd() functions. However, sometimes it is not always pleasant to have those dumps on the main web view. This package enabled a very lightweight inspector just like devtools of the browser where all the dumps are stored.

Usage :

There is nothing fancy at all, you can directly call idump() function which you can remember as a dump inside an inspector window.

<?php
$user = \App\User::first();
idump($user);

This will make your page appear as it is and will add a button on top right to open the inspector like below :

Once you click on Open Laravel Dumper button, it will open very clean and simple inspector window like below :

You can have multiple dumps anywhere in your project. Those will be stacked inside the inspector one after another.

You can make use of Minimise All action to collapse all dumps like below :

You can make use of Expand All action to expand all dumps like below :

Wait.. There is more :

If there is a single variable passed to the idump() helper function, it returns the same value which helps you to actually chain functions and use dump between like below :

<?php 

// This will dump the query builder in the dump inspector and continue the first operation
$user = idump(\App\User::where('name', 'like', '%john'))->first();

Version Support :

Works on Laravel Version 5.2 and above.

It is not recommended to use this on production environment. This is just to help you during the development lifecycle to make debugging more user friendly.

License :

This psckage is open-sourced software licensed under the MIT license


All versions of laravel-dump-inspector with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.9
symfony/var-dumper Version 2.8.x|3.x.x|4.x.x
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package techsemicolon/laravel-dump-inspector contains the following files

Loading the files please wait ....