{"id":14983884,"url":"https://github.com/jugid/automatic-breadcrumbs","last_synced_at":"2026-01-18T00:21:55.133Z","repository":{"id":202833820,"uuid":"708235648","full_name":"JuGid/automatic-breadcrumbs","owner":"JuGid","description":"Symfony bundle to create automatic and manual breadcrumbs","archived":false,"fork":false,"pushed_at":"2024-02-04T00:07:59.000Z","size":143,"stargazers_count":3,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-10T15:14:41.061Z","etag":null,"topics":["breadcrumbs","php8","symfony-bundle","symfony6"],"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/JuGid.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-21T23:46:53.000Z","updated_at":"2024-03-25T15:12:33.000Z","dependencies_parsed_at":"2023-10-22T01:37:02.747Z","dependency_job_id":"5e5904a3-136b-4cec-a7a4-380c19dc6da2","html_url":"https://github.com/JuGid/automatic-breadcrumbs","commit_stats":{"total_commits":43,"total_committers":1,"mean_commits":43.0,"dds":0.0,"last_synced_commit":"0c58b7c3d68629be0c624a9ec4845ddc7567c7d2"},"previous_names":["jugid/automatic-breadcrumbs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuGid%2Fautomatic-breadcrumbs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuGid%2Fautomatic-breadcrumbs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuGid%2Fautomatic-breadcrumbs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuGid%2Fautomatic-breadcrumbs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JuGid","download_url":"https://codeload.github.com/JuGid/automatic-breadcrumbs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247301645,"owners_count":20916549,"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","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":["breadcrumbs","php8","symfony-bundle","symfony6"],"created_at":"2024-09-24T14:08:07.181Z","updated_at":"2026-01-18T00:21:55.097Z","avatar_url":"https://github.com/JuGid.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Automatic Breadcrumbs Bundle\n[![codecov](https://codecov.io/gh/JuGid/automatic-breadcrumbs/graph/badge.svg?token=64MZ6L6361)](https://codecov.io/gh/JuGid/automatic-breadcrumbs) \n\nThis bundle helps you creating automatic and manual breadcrumbs for your Symfony project.\n\nCompatibility\n=============\n\n- php \u003e= 8\n- Symfony \u003e= 6\n\nInstallation\n============\n\nMake sure Composer is installed globally, as explained in the\n[installation chapter](https://getcomposer.org/doc/00-intro.md)\nof the Composer documentation.\n\nApplications that use Symfony Flex\n----------------------------------\n\nOpen a command console, enter your project directory and execute:\n\n```console\n$ composer require jugid/automatic-breadcrumbs-bundle\n```\nThat's it !\n\nApplications that don't use Symfony Flex\n----------------------------------------\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 jugid/automatic-breadcrumbs-bundle\n```\n\n### Step 2 : Enable the Bundle\n\nThen, enable the bundle by adding it to the list of registered bundles\nin the `config/bundles.php` file of your project:\n\n```php\n// config/bundles.php\n\nreturn [\n    // ...\n    Jugid\\AutomaticBreadcrumbs\\AutomaticBreadcrumbsBundle::class =\u003e ['all' =\u003e true],\n];\n```\n\n### Step 3 : Configure the bundle in `config/packages/jugid_automatic_breadcrumbs.yaml`:\n    \n``` yaml\n# config/packages/jugid_automatic_breadcrumbs.yaml\njugid_automatic_breadcrumbs: ~\n```\n\nThat's it ! For more detailled options, visit the `/docs` folder on this github repository.\n\nExamples\n========\nThose examples are the simplest examples we can provide : \n\nWhen breadcrumbs are created automatically : \n--------------------------------------------\n```php\n// src/Controller/MyController.php\n\nuse Jugid\\AutomaticBreadcrumbs\\Attribute\\Breadcrumb;\n\n#[Breadcrumb(title:'Index', root:true)]\n#[Route('/', name: 'app_test')]\npublic function index(Breadcrumbs $b): Response\n{\n    //...\n}\n```\n\nWhen breadcrumbs are created manually : \n---------------------------------------\n```php\n// src/Controller/MyController.php\n\nuse Jugid\\AutomaticBreadcrumbs\\Breadcrumbs;\n\n#[Route('/', name: 'app_index')]\npublic function index(Breadcrumbs $breadcrumbs): Response\n{\n    $breadcrumbs\n        -\u003egetCollection()\n        -\u003eaddItem('Github', 'http://github.com')\n    ;\n\n    return $this-\u003erender('index.html.twig', []);\n}\n```\n\nHelp needed\n===========\n\n* [tests] Unit tests ([#1][i1])\n* [feature] More views ([#2][i2])\n* [feature] PHP7 compatibility ([#3][i3])\n\nContributing\n============\nWe welcome contributions to this project, including pull requests and issues (and discussions on existing issues).\n\nOriginally created for [Suitvie](https://suitvie.fr) (bêta 0.3.0)\nInspired by [mhujer/BreadcrumbsBundle](https://github.com/mhujer/BreadcrumbsBundle)\n\n[i1]: https://github.com/JuGid/automatic-breadcrumbs/issues/1\n[i2]: https://github.com/JuGid/automatic-breadcrumbs/issues/2\n[i3]: https://github.com/JuGid/automatic-breadcrumbs/issues/3","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjugid%2Fautomatic-breadcrumbs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjugid%2Fautomatic-breadcrumbs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjugid%2Fautomatic-breadcrumbs/lists"}