{"id":43203401,"url":"https://github.com/fkeloks/ibexa-logs-ui","last_synced_at":"2026-02-01T06:30:37.663Z","repository":{"id":57749308,"uuid":"523670307","full_name":"fkeloks/ibexa-logs-ui","owner":"fkeloks","description":"Symfony bundle dedicated to Ibexa, to add a log management interface to the back office.","archived":false,"fork":false,"pushed_at":"2023-11-08T10:26:21.000Z","size":163,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-20T02:25:06.883Z","etag":null,"topics":["ibexa","ibexa-bundle","logs","symfony"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fkeloks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-11T09:55:56.000Z","updated_at":"2022-08-23T09:31:07.000Z","dependencies_parsed_at":"2022-08-27T00:10:48.534Z","dependency_job_id":null,"html_url":"https://github.com/fkeloks/ibexa-logs-ui","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/fkeloks/ibexa-logs-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkeloks%2Fibexa-logs-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkeloks%2Fibexa-logs-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkeloks%2Fibexa-logs-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkeloks%2Fibexa-logs-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fkeloks","download_url":"https://codeload.github.com/fkeloks/ibexa-logs-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkeloks%2Fibexa-logs-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28970498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T05:48:53.985Z","status":"ssl_error","status_checked_at":"2026-02-01T05:47:55.855Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ibexa","ibexa-bundle","logs","symfony"],"created_at":"2026-02-01T06:30:36.959Z","updated_at":"2026-02-01T06:30:37.648Z","avatar_url":"https://github.com/fkeloks.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"IbexaLogsUiBundle  \n[![Build Status](https://travis-ci.com/fkeloks/ibexa-logs-ui.svg?branch=main)](https://travis-ci.com/fkeloks/ibexa-logs-ui)\n[![PHP Version Require](http://poser.pugx.org/fkeloks/ibexa-logs-ui/require/php)](https://packagist.org/packages/fkeloks/ibexa-logs-ui)\n[![Version](http://poser.pugx.org/fkeloks/ibexa-logs-ui/version)](https://packagist.org/packages/fkeloks/ibexa-logs-ui)\n[![License](http://poser.pugx.org/fkeloks/ibexa-logs-ui/license)](https://packagist.org/packages/fkeloks/ibexa-logs-ui)\n============\n\nSymfony bundle dedicated to Ibexa, to add a log management interface to the back office.\n\n![Screenshot of IbexaLogsUiBundle](snapshot.jpg)\n\n**Details**:\n\n* Author: Florian Bouché\n* Licence: [MIT]([https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT))\n\n**Available translations**:\n\n* en (English)\n* fr (French)\n\n## Requirements\n\n* php: \u003e=7.3\n* ibexa: 3.3.*\n\n:warning: Warning, in its current version, the bundle **only supports** log files in `Monolog/LineFormatter` format.  \n[LineFormatter from Github](https://github.com/Seldaek/monolog/blob/master/src/Monolog/Formatter/LineFormatter.php)\n\n## Installation\n\n### Step 1: Download the Bundle\n\nOpen a command console, enter your project directory and execute the\nfollowing command to download the latest stable version of this bundle:\n\n```console\n$ composer require fkeloks/ibexa-logs-ui\n```\n\nThis command requires you to have Composer installed globally, as explained in\nthe [installation chapter](https://getcomposer.org/doc/00-intro.md) of the Composer documentation.\n\n### Step 2: Enable the Bundle\n\nAdd `IbexaLogsUi\\Bundle\\IbexaLogsUiBundle::class =\u003e ['dev' =\u003e true]`, in the `config/bundles.php` file, just before\nthe `EzPlatformAdminUiBundle` line.\n\nLike this:\n\n```php\n\u003c?php\n\nreturn [\n    // ...\n    IbexaLogsUi\\Bundle\\IbexaLogsUiBundle::class =\u003e ['dev' =\u003e true],\n    EzSystems\\EzPlatformAdminUiBundle\\EzPlatformAdminUiBundle::class =\u003e ['all' =\u003e true],\n    // ...\n];\n```\n\nIf desired, the bundle can be activated in prod mode by replacing `dev` with `prod`.\n\n### Step 3: Import bundle routing file\n\n```yaml\n# app/config/routing.yml or config/routing.yaml\n\n_ibexa_logs_ui:\n    resource: \"@IbexaLogsUiBundle/Resources/config/routing.yml\"\n```\n\n## License\n\nThis package is licensed under the [MIT license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffkeloks%2Fibexa-logs-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffkeloks%2Fibexa-logs-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffkeloks%2Fibexa-logs-ui/lists"}