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
- Host: GitHub
- URL: https://github.com/phpmv/ubiquity-debug
- Owner: phpMv
- Created: 2021-04-18T14:06:29.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-28T11:20:00.000Z (about 2 years ago)
- Last Synced: 2024-04-29T02:03:35.520Z (almost 2 years ago)
- Language: PHP
- Size: 108 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

[](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
```