Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nimblemvc/debugbar
- Owner: NimbleMVC
- License: mit
- Created: 2024-05-13T17:51:29.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-10-12T18:14:17.000Z (26 days ago)
- Last Synced: 2024-10-13T21:43:10.487Z (25 days ago)
- Topics: composer, debug, debugbar, nimblephp, php8
- Language: PHP
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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