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

https://github.com/phpmv/ubiquity-debug

Debugger for Ubiquity framework
https://github.com/phpmv/ubiquity-debug

Last synced: 11 months ago
JSON representation

Debugger for Ubiquity framework

Awesome Lists containing this project

README

          

![img](https://github.com/phpMv/ubiquity-debug/blob/main/.github/images/debugger.png?raw=true)

[![Latest Stable Version](https://poser.pugx.org/phpmv/ubiquity-debug/v/stable)](https://packagist.org/packages/phpmv/ubiquity-debug)

Debugger for Ubiquity framework

# Integration
## For an existing project

```bash
composer require phpmv/ubiquity-debug
```

If you had devtools previously installed globally, update them:
```bash
composer global update
```

Update in `.ubiquity/_index.php` file:

```php
\Ubiquity\debug\Debugger::start($config);// To add

\Ubiquity\controllers\Startup::run($config);
```

## For a new project (since Ubiquity 2.4.4)
Nothing to do: The debugger is active by default with the php built-in server.

```bash
Ubiquity serve
```