corpsee / nameless-debug

[ABANDONED] Simple and independent PHP debug component compliant with PSR-1, PSR-2, PSR-4 and Composer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP Censor Travis CI SensioLabs Insight Codecov Latest Version Total downloads License

This package is abandoned and no longer maintained. The author suggests using the symfony/debug package instead.

Nameless debug

Simple and independent PHP debug component compliant with PSR-1, PSR-2, PSR-4 and Composer.

Installation

You can install Nameless debug by composer. Add following code to "require" section of the composer.json:

"require": {
    "corpsee/nameless-debug": "<version>"
}

And install dependencies using the Composer:

cd path/to/your-project
composer install

Usage

Example of a simple way to use:

error_reporting(-1);

use Nameless\Debug\ErrorHandler;
use Nameless\Debug\ExceptionHandler;

$exception_handler = null;
if ($debug) {
    $exception_handler = (new ExceptionHandler())->register();
} else {
    set_exception_handler(function(\Exception $exception) {
        exit('Server error');
    });
}
$error_handler = (new ErrorHandler($exception_handler, $logger))->register();

Tests

You can run the unit tests with the following commands:

cd path/to/nameless-debug
./vendor/bin/phpunit

License

The Nameless debug is open source software licensed under the GPL-3.0 license.

About

[ABANDONED] Simple and independent PHP debug component compliant with PSR-1, PSR-2, PSR-4 and Composer

License:GNU General Public License v3.0


Languages

Language:PHP 100.0%