apy/breadcrumbtrail-bundle

Symfony bundle to generate a dynamic Twig breadcrumbs trail via Annotations, PHP Attributes or PHP methods.

Installs: 718 055

Dependents: 1

Suggesters: 0

Security: 0

Stars: 80

Watchers: 7

Forks: 30

Open Issues: 7

Type:symfony-bundle

v1.9.2 2023-03-21 09:33 UTC

This package is auto-updated.

Last update: 2024-04-04 11:29:36 UTC


README

This bundle provides a breadcrumb trail service also known as breadcrumbs or Fil d'Ariane. Breadcrumbs can be defined with Attributes, annotations, PHP and Twig.

Installation

Please follow the steps given in installation.md to install this bundle.

Bundle documentation

Tests

Several make targets can get used to run the PHPUnit test suite on different PHP environments:

$ make test
$ make test-php73
$ make test-php74-lowest

In case all test suites pass but running tests still returns an error code, that might be related to the number of allowed deprecations. Make sure that the SYMFONY_DEPRECATIONS_HELPER value of max[self] as found in phpunit.xml.dist matches the "Remaining self deprecation notices" count from the test runner output.

Code style

PHP-CS-Fixer is used to keep the code style in shape. There is a make target that uses Docker to fix the code style without having to install any other dependencies:

$ make cs

Static code analysis

PHPStan is used to keep the code quality up to par. There is a make target that uses Docker to test the code quality without having to install any other dependencies:

$ make static