Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kemalyen/dblogger-api
https://github.com/kemalyen/dblogger-api
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kemalyen/dblogger-api
- Owner: kemalyen
- Created: 2016-02-08T14:16:00.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-11T11:03:06.000Z (almost 9 years ago)
- Last Synced: 2023-08-30T16:31:16.924Z (over 1 year ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Api interface for DbLogger
DbLogger-Api is an api server for the [DbLogger](https://github.com/gazatem/dblogger) package.
If you haven't already set up DbLogger then first you need to install and configure DbLogger.
This package is only a gui interface. DbLogger must be enable to log data for gui interface.## Installation
Add the package to your ```composer.json``` file
```
"gazatem/dblogger-api": "dev-master"
```Add the service provider to your ```config/app.php``` file
```
Gazatem\DBLoggerApi\DBLoggerApiServiceProvider::class,
```Publish the configuration file(s)
```
php artisan vendor:publish --provider="Gazatem\DBLoggerGui\DBLoggerApiServiceProvider"
```You can change route prefix by editing ```route-prefix``` in ```config/dblogger-api.php```.
```
'route-prefix' => 'api/logs'
```