Download the PHP package codeops/slim-phpconsole without Composer
On this page you can find all versions of the php package codeops/slim-phpconsole. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download codeops/slim-phpconsole
More information about codeops/slim-phpconsole
Files in codeops/slim-phpconsole
Package slim-phpconsole
Short Description PHP-Console logging support for Slim Framework
License MIT
Homepage http://github.com/amenadiel/SlimPHPConsole
Informations about the package slim-phpconsole
SlimPHPConsole
PHP-Console log writer for Slim Framework
Use this custom log writer to output Slim Framework's log messages to your browser's console using PHP-Console.
Installation
Just add amenadiel/slim-phpconsole
to your composer.json
file in the require or require-dev sections:
{
"require": {
"amenadiel/slim-phpconsole":"~0.0.4"
}
}
Usage
Instantiate the log writer. If you don't want to have the handler autostarted, pass false
as a parameter, true
is implied otherwise.
When the handler is started it will set itself as error and exception handler too, unless you set it otherwise.
Starting from version 0.0.6
this adapter extends Slim\Middleware. Therefore, you can also use the add
method of your app
Both ways of setting PHP-Console as your logger are pretty much the same. Afterwards, you can send messages to your browser's console using $app->log
's methods.
You can pass custom tags to PHPConsole by using this adapter's debug
method which forwards its parameters to PHPConsole's debug
method.
If you are using PHPConsole directly somewhere else in your app, remember not to start it twice, for it will throw an exception. Use its isStarted
method to check if it's already started.
Optional Settings
You can use PHP-Console's configuration methods by getting a reference to the Handler instance or the Connector instance. For example: