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.
- Host: GitHub
- URL: https://github.com/jv-k/uf-debug
- Owner: jv-k
- Created: 2022-11-06T04:39:21.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-06T05:10:27.000Z (over 2 years ago)
- Last Synced: 2025-02-21T07:46:46.242Z (3 months ago)
- Topics: userfrosting, userfrosting-sprinkle
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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
```