Download the PHP package onlime/laravel-sql-reporter without Composer

On this page you can find all versions of the php package onlime/laravel-sql-reporter. 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-sql-reporter

Laravel SQL Reporter

Latest Version on Packagist Packagist Downloads PHP from Packagist Build Status GitHub License

This module allows you to log SQL queries to log file in Laravel framework. It's useful mainly when developing your application to verify whether your queries are valid and to make sure your application doesn't run too many or too slow database queries.

You may also use this in production as it should not cause a lot of overhead. Logged queries can be limited by query pattern, and logging only occurs at the end of each request or artisan command execution, not per query execution.

It reports a lot of metadata like total query count, total execution time, origin (request URL/console command), authenticated user, app environment, client browser agent / IP / hostname.

Installation

  1. Run

    in console to install this module (Notice --dev flag - it's recommended to use this package only for development).

    Laravel uses package auto-discovery, and it will automatically load this service provider, so you don't need to add anything into the providers section of config/app.php.

  2. Run the following in your console to publish the default configuration file:

    By default, you should not edit published file because all the settings are loaded from .env file by default.

  3. In your .env file add the following entries:

    and adjust values to your needs. You can skip variables for which you want to use default values.

    To only log DML / modifying queries like INSERT, UPDATE, DELETE, but not logging any updates on last_visit or remember_token, I recommend to use:

    If you have also .env.example it's recommended to add those entries also in .env.example file just to make sure everyone knows about those env variables. Be aware that SQL_REPORTER_DIRECTORY is directory inside storage directory.

    To find out more about those setting please take a look at Configuration file

  4. Make sure directory specified in .env file exists in storage path, and you have valid permissions to create and modify files in this directory (If it does not exist this package will automatically create it when needed, but it's recommended to create it manually with valid file permissions)

  5. Make sure on live server you will set logging SQL queries to false in your .env file: SQL_REPORTER_QUERIES_ENABLED=false. This package is recommended to be used only for development to not impact production application performance.

Optional

GeoIP support

For optional GeoIP support (adding country information to client IP in log headers), you may install stevebauman/location in your project:

It will be auto-detected, no configuration needed for this. If you wish to use a different driver than the default IpApi, e.g. MaxMind make sure you correctly configure it according to the docs: Available Drivers

QueryLogWritten event

This package fires a QueryLogWritten event after the log file has been written. You may use this event to further debug or analyze the logged queries in your application. The queries are filtered by the SQL_REPORTER_QUERIES_REPORT_PATTERN setting, which comes with a sensible default to exclude SELECT queries and some default tables like sessions, jobs, bans, logins. If you don't want to filter any queries, you may leave this setting empty.

In addition to the pattern, you may also configure a callback to define your own custom filtering logic, for example, in your AppServiceProvider:

With the SqlQuery object, you have access to both $rawQuery and the (unprepared) $query/$bindings. The filter possibilities by providing a callback to Writer::shouldReportQuery() are endless!

Development

Checkout project and run tests:

FAQ

How does this package differ from mnabialek/laravel-sql-logger ?

This package was inspired by mnabialek/laravel-sql-logger and basically does the same thing: Logging your SQL queries. Here's the difference:

Sample log output:

In comparison, sample log output of mnabialek/laravel-sql-logger:

Authors

Author of this awesome package is Philip Iezzi (Onlime GmbH).

Large parts of this package were ported from the original mnabialek/laravel-sql-logger. Credits go to Marcin Nabiałek. Please star his great package on GitHub! You may use composer thanks for this.

Changes

All changes are listed in CHANGELOG

Caveats

TODO

License

This package is licenced under the MIT license however support is more than welcome.


All versions of laravel-sql-reporter with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/support Version ^11.0||^12.0
illuminate/filesystem Version ^11.0||^12.0
illuminate/container Version ^11.0||^12.0
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 onlime/laravel-sql-reporter contains the following files

Loading the files please wait ....