PHPackages                             st3ph/cakephp-breadcrumb - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. st3ph/cakephp-breadcrumb

ActiveCakephp-plugin[Utility &amp; Helpers](/categories/utility)

st3ph/cakephp-breadcrumb
========================

CakePHP 3.x plugin to handle Breadcrumb

11.0k3[1 PRs](https://github.com/st3ph/cakephp-breadcrumb/pulls)PHP

Since Aug 27Pushed 8y ago1 watchersCompare

[ Source](https://github.com/st3ph/cakephp-breadcrumb)[ Packagist](https://packagist.org/packages/st3ph/cakephp-breadcrumb)[ RSS](/packages/st3ph-cakephp-breadcrumb/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Breadcrumb plugin for CakePHP 3.x
=================================

[](#breadcrumb-plugin-for-cakephp-3x)

===============================================

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE) [![Travis](https://camo.githubusercontent.com/9959a96bc31c004ce1c11de044d0792d89e150e7e5d582feadad4e50b62b6a61/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f457277616e652f63616b657068702d636f6e746163742e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/Erwane/cakephp-contact)

CakePHP-breadcrumb is here to help you manage your breadcrumbs

It is compatible with CakePHP 3 only.

- [Installation](#installing-with-composer)
    - [Configuration](#configuration)
- [Usage](#usage)
    - [Controllers](#controllers)
    - [Views](#views)

Installing with Composer
========================

[](#installing-with-composer)

The package is available on [Packagist](https://packagist.org/packages/erwane/cakephp-contact). You can install it using this [Composer](http://getcomposer.org) command in the root of your project:

```
composer require st3ph/cakephp-breadcrumb
```

```
# In config/bootstrap.php
Plugin::load('Breadcrumb');
```

```
# In src/Controller/AppController.php (or any controller)
public function initialize()
{
    parent::initialize();
    $this->loadComponent('Breadcrumb.Breadcrumb');
}
```

Loading the Helper:

```
# In View/AppView.php
public function initialize()
{
    parent::initialize();
    $this->loadHelper('Breadcrumb', ['className' => 'Breadcrumb.Breadcrumb']);
}
```

Configuration
-------------

[](#configuration)

None, yet.

Usage
=====

[](#usage)

Controllers
-----------

[](#controllers)

```
$this->Breadcrumb->push([
    'title' => 'Awesome title',
    'url' => Router::url(['controller' => 'MyController', 'action' => 'MyAction']),
]);
```

Views
-----

[](#views)

The plugin automatically create a view variable with the breadcrumb array in the beforeRender event named $BreadCrumbCrumbs.

```
echo $this->Breadcrumb->display($BreadCrumbCrumbs);
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/130872?v=4)[Stéphane Litou](/maintainers/st3ph)[@st3ph](https://github.com/st3ph)

---

Top Contributors

[![monsurhoq](https://avatars.githubusercontent.com/u/7543998?v=4)](https://github.com/monsurhoq "monsurhoq (2 commits)")[![st3ph](https://avatars.githubusercontent.com/u/130872?v=4)](https://github.com/st3ph "st3ph (2 commits)")

### Embed Badge

![Health badge](/badges/st3ph-cakephp-breadcrumb/health.svg)

```
[![Health](https://phpackages.com/badges/st3ph-cakephp-breadcrumb/health.svg)](https://phpackages.com/packages/st3ph-cakephp-breadcrumb)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
