{"id":21963839,"url":"https://github.com/agence-adeliom/easy-faq-bundle","last_synced_at":"2025-10-08T23:41:08.006Z","repository":{"id":56941856,"uuid":"402377152","full_name":"agence-adeliom/easy-faq-bundle","owner":"agence-adeliom","description":"A Symfony simple FAQ bundle for EasyAdmin","archived":false,"fork":false,"pushed_at":"2025-09-15T07:40:13.000Z","size":135,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"2.x","last_synced_at":"2025-09-15T09:33:57.762Z","etag":null,"topics":["easyadmin","faq","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/agence-adeliom.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-09-02T10:18:59.000Z","updated_at":"2025-09-15T07:40:16.000Z","dependencies_parsed_at":"2023-12-08T15:00:18.471Z","dependency_job_id":"556c24e1-6493-47cf-8a58-eb63c6aaee9e","html_url":"https://github.com/agence-adeliom/easy-faq-bundle","commit_stats":{"total_commits":200,"total_committers":3,"mean_commits":66.66666666666667,"dds":0.235,"last_synced_commit":"e8b73f9d92a7f318e16bdfe361b2234cab94160e"},"previous_names":[],"tags_count":121,"template":false,"template_full_name":null,"purl":"pkg:github/agence-adeliom/easy-faq-bundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-faq-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-faq-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-faq-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-faq-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agence-adeliom","download_url":"https://codeload.github.com/agence-adeliom/easy-faq-bundle/tar.gz/refs/heads/2.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agence-adeliom%2Feasy-faq-bundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000730,"owners_count":26082862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["easyadmin","faq","symfony"],"created_at":"2024-11-29T11:44:10.293Z","updated_at":"2025-10-08T23:41:07.978Z","avatar_url":"https://github.com/agence-adeliom.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n![Adeliom](https://adeliom.com/public/uploads/2017/09/Adeliom_logo.png)\n[![Quality gate](https://sonarcloud.io/api/project_badges/quality_gate?project=agence-adeliom_easy-faq-bundle)](https://sonarcloud.io/dashboard?id=agence-adeliom_easy-faq-bundle)\n\n# Easy FAQ Bundle\n\nProvide a basic FAQ system for Easyadmin.\n\n## Features\n\n- A Easyadmin CRUD interface to manage FAQ elements\n\n## Versions\n\n| Repository Branch | Version | Symfony Compatibility | PHP Compatibility | Status                     |\n|-------------------|---------|-----------------------|-------------------|----------------------------|\n| `3.x`             | `3.x`   | `6.4`, and `7.x`      | `8.2` or higher    | New features and bug fixes |\n| `2.x`             | `2.x`   | `5.4`, and `6.x`      | `8.0.2` or higher | Bug fixes                              |\n| `1.x`             | `1.x`   | `4.4`, and `5.x`      | `7.2.5` or higher | No longer maintained       |\n\n\n## Installation with Symfony Flex\n\nAdd our recipes endpoint\n\n```json\n{\n  \"extra\": {\n    \"symfony\": {\n      \"endpoint\": [\n        \"https://api.github.com/repos/agence-adeliom/symfony-recipes/contents/index.json?ref=flex/main\",\n        ...\n        \"flex://defaults\"\n      ],\n      \"allow-contrib\": true\n    }\n  }\n}\n```\n\nInstall with composer\n\n```bash\ncomposer require agence-adeliom/easy-faq-bundle\n```\n\n### Setup database\n\n#### Using doctrine migrations\n\n```bash\nphp bin/console doctrine:migration:diff\nphp bin/console doctrine:migration:migrate\n```\n\n#### Without\n\n```bash\nphp bin/console doctrine:schema:update --force\n```\n\n\n## Documentation\n\n### Manage in your Easyadmin dashboard\n\nGo to your dashboard controller, example : `src/Controller/Admin/DashboardController.php`\n\n```php\n\u003c?php\n\nnamespace App\\Controller\\Admin;\n\n...\nuse App\\Entity\\EasyFaq\\Entry;\nuse App\\Entity\\EasyFaq\\Category;\n\nclass DashboardController extends AbstractDashboardController\n{\n    ...\n    public function configureMenuItems(): iterable\n    {\n        ...\n        yield MenuItem::section('easy.faq.faq'); // (Optional)\n        yield MenuItem::linkToCrud('easy.faq.admin.menu.entries', 'fa fa-file-alt', Entry::class);\n        yield MenuItem::linkToCrud('easy.faq.admin.menu.categories', 'fa fa-folder', Category::class);\n\n        ...\n```\n\n### Customize faq's root path\n\n```yaml\n#config/packages/easy_faq.yaml\neasy_faq:\n  ...\n  page:\n    root_path: '/blog'\n```\nNOTE : You will need to clear your cache after change because the RouteLoader need to be cleared.\n\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n\n\n## Authors\n\n- [@arnaud-ritti](https://github.com/arnaud-ritti)\n- [@JeromeEngelnAdeliom](https://github.com/JeromeEngelnAdeliom)\n\n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagence-adeliom%2Feasy-faq-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagence-adeliom%2Feasy-faq-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagence-adeliom%2Feasy-faq-bundle/lists"}