acelaya/expressive-slim-router

This package is abandoned and no longer maintained. No replacement package was suggested.

A router for Zend Expressive based on Slim framework's implementation

v4.0.1 2018-03-19 21:13 UTC

This package is auto-updated.

Last update: 2024-01-26 08:23:31 UTC


README

Build Status Code Coverage Scrutinizer Code Quality Latest Stable Version Total Downloads License

A router for Zend Expressive based on Slim framework's implementation.

I decided to do this implementation because Slim's router supports optional params at the beginning of the path, while other Expressive supported routers don't.

Installation

Install this package with composer

composer require acelaya/expressive-slim-router

Usage

You just need to register the include this package's ConfigProvider in your project's configuration.

<?php
declare(strict_types=1);

$aggregator = new ConfigAggregator([
    // ...

    App\ConfigProvider::class,
    Acelaya\Expressive\ConfigProvider::class,

    // ...
], '...');

If you are already using zend-component-installer, the ConfigProvider will be automatically registered for you.