fkeloks / ezplatform-logs-ui
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 2
Type:symfony-bundle
Requires
- php: ^7.1.3
- ezsystems/ezplatform-admin-ui: 1.5.*
- phpunit/phpunit: 7.5.*
- symfony/cache: ^3.4
This package is not auto-updated.
Last update: 2022-08-13 16:42:00 UTC
README
Symfony bundle dedicated to eZ Platform, to add a log management interface to the back office.
Details:
- Author: Florian Bouché
- Licence: MIT
Requirements
- php: ^7.1.3
- ezsystems/ezplatform: 2.5.*
- ezsystems/ezplatform-admin-ui: ^1.5
⚠️ Warning, in its current version, the bundle only supports log files in Monolog/LineFormatter
format.
LineFormatter from Github
Installation
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require fkeloks/ezplatform-logs-ui
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php
file of your project:
// app/AppKernel.php class AppKernel extends Kernel { public function registerBundles() { $bundles = [ // ... new EzPlatformLogsUi\Bundle\EzPlatformLogsUiBundle(), ]; } }
Step 3: Import EzPlatformLogsUi routing files
Now that you have activated and configured the bundle, all that is left to do is import the EzPlatformLogsUi routing files.
# app/config/routing.yml # EzPlatformLogsUiBundle _ezplatform_logs_ui: resource: "@EzPlatformLogsUiBundle/Resources/config/routing.yml" prefix: /