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

https://github.com/jv-k/uf-debug

Provides a simple page which can be customised to show debug information for developing software with UserFrosting.
https://github.com/jv-k/uf-debug

userfrosting userfrosting-sprinkle

Last synced: 3 months ago
JSON representation

Provides a simple page which can be customised to show debug information for developing software with UserFrosting.

Awesome Lists containing this project

README

        

# Debug Sprinkle for UserFrosting

This Sprinkle provides a simple page which can be customised to show debug information for developing software with UserFrosting.

# Installation
To install this sprinkle, add `uf-debug` to the `require` and `base` sections of your `app/sprinkles.json` file in your UserFrosting installation:

```json
{
"require": {
...
"jv-k/uf-debug": "^1.0.0"
},
"base": [
...
"uf-debug"
]
}
```

Download and install the new dependency to your sprinkles folder:
```bash
composer update
```

Add the `debug_access` permission to the database permissions:
```bash
php bakery seed DebugPermissions
```

Finally, add the sprinkle to your installing with the last step, which updates the autoloader:
```bash
composer dump-autoload
```