fkeloks / ibexa-logs-ui
Installs: 6 868
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=7.3
- ext-json: *
- ezsystems/ezplatform-admin-ui: ^2.3
- monolog/monolog: ^2.2
- symfony/cache: ^5.2
- symfony/web-profiler-bundle: ^5.2
Requires (Dev)
- phpunit/phpunit: ^8.5.23
This package is not auto-updated.
Last update: 2024-11-06 15:14:16 UTC
README
IbexaLogsUiBundle
Symfony bundle dedicated to Ibexa, to add a log management interface to the back office.
Details:
- Author: Florian Bouché
- Licence: MIT
Available translations:
- en (English)
- fr (French)
Requirements
- php: >=7.3
- ibexa: 3.3.*
⚠️ 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/ibexa-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
Add IbexaLogsUi\Bundle\IbexaLogsUiBundle::class => ['dev' => true]
, in the config/bundles.php
file, just before
the EzPlatformAdminUiBundle
line.
Like this:
<?php return [ // ... IbexaLogsUi\Bundle\IbexaLogsUiBundle::class => ['dev' => true], EzSystems\EzPlatformAdminUiBundle\EzPlatformAdminUiBundle::class => ['all' => true], // ... ];
If desired, the bundle can be activated in prod mode by replacing dev
with prod
.
Step 3: Import bundle routing file
# app/config/routing.yml or config/routing.yaml _ibexa_logs_ui: resource: "@IbexaLogsUiBundle/Resources/config/routing.yml"
License
This package is licensed under the MIT license.