### Installing Mezzio Router Component (Bash) Source: https://github.com/mezzio/mezzio-router/blob/4.1.x/README.md This Composer command installs the core `mezzio/mezzio-router` package, which provides the fundamental routing capabilities for Mezzio applications. It can also be used independently for generic PSR-7 middleware routing. ```bash $ composer require mezzio/mezzio-router ``` -------------------------------- ### Installing Laminas Router Integration for Mezzio (Bash) Source: https://github.com/mezzio/mezzio-router/blob/4.1.x/README.md This Composer command installs the `mezzio/mezzio-laminasrouter` package, integrating the laminas-router component for routing within Mezzio applications. It provides an alternative routing solution to FastRoute. ```bash composer require mezzio/mezzio-laminasrouter ``` -------------------------------- ### Installing FastRoute Integration for Mezzio (Bash) Source: https://github.com/mezzio/mezzio-router/blob/4.1.x/README.md This Composer command installs the `mezzio/mezzio-fastroute` package, enabling the use of the FastRoute library as the routing engine within Mezzio. It's one of the officially supported routing integrations. ```bash composer require mezzio/mezzio-fastroute ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.