Download the PHP package salibhdr/php-dump-logger without Composer

On this page you can find all versions of the php package salibhdr/php-dump-logger. 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 php-dump-logger

PHP Dump Logger

It's All About Readability

Total Downloads Today Downloads Required PHP Version Testing codecov Latest Versions Unstable Version

Table of Contents

Introduction

PHP dump logger uses Symfony's var-dumper to create a simple, easy to use, eye-friendly, and pretty log files for any PHP application. If you are a big fan of using dd() and dump(), this package is for you.

Example log file content:

php dump logger

Have you ever tried to log something with monolog, Symfony, or Laravel logger and tried to find the logged data inside a maze of text? Especially when you don't have time and don't want to go through installing and configuring Xdebug or there is a bug in production code, and you just want to see the API responses without messing with the code execution.

The problem with dd(), dump(), or var_dump() functions is that they print the data, which is something that sometimes you don't want, especially when the code execution should not be interrupted.

The first solution that comes to mind is to use a logger to log the data instead of using those print functions. But as I said, loggers aren't producing readable files, and sometimes you have to only provide them with a string, and they are incapable of directly logging a complex class. How nice would it be to have a functionality like dd() without interruption in the code?

Here php-dump-logger comes to the rescue.

php-dump-logger uses Symfony's var-dumper to generate the log content and then saves the output into a file. Which is by the way really pleasant in the eye. You can either log the data in a nice html or log format or even provide your own dumper.

Features

Installation

Install via composer:

Version Compatibility

PHP PHP Dump Logger
7.0.x to 7.1.x 1.x
7.2.x to 8.2.x 2.x

Basic Usage

This will create a __path-to-dir__/dump/log.log file like this:

Detailed Usage

Methods

Each log level (info, error, warning, etc.) creates a separate log file with method's name.


Exception Logging

If you want to log the exception in a much more readable way You should use the exception() method. This method is good for creating logs for exceptions. If You want to see the trace of the exception you can set the second argument named $withTrace to true:

Output exception.log:


Custom Log Level

As mentioned before each log level creates a separate log file. So you can create custom log level with custom file name by changing the value of $level argument in log() method:

This will create a file named custom-level.log.


Path

By default, the path to log directory is set to be $_SERVER['DOCUMENT_ROOT'] but if you call this logger from a console command the document root will be null and the logger could not find a directory to save the file, and it will throw InvalidArgumentException. So make sure to provide the directory path like so:


Directory Name

By default, The parent directory of log files is called dump but you can change the directory name of the log file with dir() method:

You can also use this dir() method to arrange your log files. for example if you want to add the custom logs in the separate directory you can do it like so:


Directory Permission

Sometimes you want to put your log files in a directory with restricted permission. In order to do that you can change the log file's directory permission with the permission() method. remember that This directory permission is only applied in the directory's first creation. So you can't change the directory's permission after the creation. Remember to provide a group with the right permissions to create and execute the file in the directory. You don't want to create a directory that even PHP could not write into it. By default, the directory and the files inside it will have 0775 permission.


Daily Log

Sometimes you want to log data daily into separate file's based on date, You can separate the log files daily with date suffix by calling the daily() method.

It will create file's like this for separate days:


Silent Logging

Calling silent() method allows you to log data without throwing an error.

Remember, in some cases the logger will throw an error when the $path is empty, or when it couldn't write into the target file for permission reasons.

So if you want to avoid that, and you don't want to interrupt the code execution, you can call silent() method. In the background this method will force the logger to execute the code in try-catch block and return a boolean instead of the exception.


Loggers

Pretty Logger

The pretty logger is used for creating a log file with .log extension in a pretty readable way.

You can make the pretty logger class with logger factory class like so:


Html Logger

The html logger is used for creating a log file with .html extension in a pretty readable way. You can navigate throw different variables, toggle the multidimensional arrays and complex class properties.

You can make the html logger class with logger factory like so:


Raw Logger

Raw Logger is base logger class that other loggers are using it. The only difference between Raw Logger and the others is that there is no dumper or path specified in this logger, and you have to provide a dumper and the file extension with dumper() and the path with path() method. Otherwise, it will throw SaliBhdr\DumpLog\Exceptions\InvalidArgumentException

Remember that the dumper should be the instance of Symfony\Component\VarDumper\Dumper\AbstractDumper. Feel free to create your own dumper and use the Raw logger.

example:


Custom Logger

You can create your own dump logger by implementing one of these interfaces:

You can also use the RawLogger in your own logger by first instantiating the RawLogger in your Logger and then use the SaliBhdr\DumpLog\Traits\LogsThroughRawLogger trait.

If you use DumpLoggerAwareInterface you should keep in mind that the dumper should implement SaliBhdr\DumpLog\Contracts\DumperStrategyInterface;

Example dumper strategy:

And then you can use your own dumper strategy:


Full Example

Issues

You can report issues in GitHub repository here

License

PHP dump logger is released under the MIT License.

Created by Salar Bahador

salar bahador linkedin LinkedIn     salar bahador github GitHub     salar bahador packegist Packagist

Built with ❤ for you.

Testing

for testing:

for using php code sniffer:

for both csfix and test:

Contributing

Please see CONTRIBUTING for details.


All versions of php-dump-logger with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2 | ^7.3 | ^7.4 | ^8.0 | ^8.1 | ^8.2
symfony/var-dumper Version ^5 | ^6 | ^7
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 salibhdr/php-dump-logger contains the following files

Loading the files please wait ....