Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nimblemvc/debugbar

Debugbar module for NimblePHP
https://github.com/nimblemvc/debugbar

composer debug debugbar nimblephp php8

Last synced: 25 days ago
JSON representation

Debugbar module for NimblePHP

Awesome Lists containing this project

README

        

#

NimblePHP - Migrations


Debugbar jest modułem który umożliwia w łatwy sposób zintegrować PHP Debugbar do projektu opartego na NimblePHO

**Dokumentacja** projektu dostępna jest pod linkiem:
https://nimblemvc.github.io/documentation/extension/debugbar/start/#

## Instalacja
```shell
composer require nimblephp/debugbar
```

## Użycie
Po zainstalowaniu composera tworzymy lub edytujemy plik `Middleware.php` i wklejamy w metodę `afterBootstrap` następujący kod:
```php
(new Debugbar())->init();
```
Dodajemy w szablonie:
```php
echo \Nimblephp\debugbar\Debugbar::renderHead();
```
Teraz zainicjował się debugbar i możemy go ustawić w `index.php` na końcu
```php
echo \Nimblephp\debugbar\Debugbar::render();
```

### Gotowy plik `Middleware.php` z wyliczaniem czasu ładowania kontrolera oraz zwróceniem błędów
```php
init();
}

public function handleException(Throwable $exception)
{
\Nimblephp\debugbar\Debugbar::$debugBar['exceptions']->addException($exception);
}

public function beforeController(string $controllerName, string $action, array $params)
{
\Nimblephp\debugbar\Debugbar::$debugBar['time']->startMeasure('load-controller-' . $controllerName . $action, 'Load ' . str_replace('\src\Controller\\', '', $controllerName) . ' controller');
}

public function afterController(string $controllerName, string $action, array $params)
{
\Nimblephp\debugbar\Debugbar::$debugBar['time']->stopMeasure('load-controller-' . $controllerName . $action);
}

}
```

## Współtworzenie
Zachęcamy do współtworzenia! Masz sugestie, znalazłeś błędy, chcesz pomóc w rozwoju? Otwórz issue lub prześlij pull request.

## Pomoc
Wszelkie problemy oraz pytania należy zadawać przez zakładkę discussions w github pod linkiem:
https://github.com/NimbleMVC/Migrations/discussions