freezy-bee/prepend-route

Nette Framework extension with prepend route support

Installs: 5 326

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/freezy-bee/prepend-route

v2.0.1 2021-09-02 15:47 UTC

This package is auto-updated.

Last update: 2025-09-29 02:06:15 UTC


README

Build Status Coverage Status

Installation

The best way to install FreezyBee/PrependRoute is using Composer:

composer require freezy-bee/prepend-route

With Nette 2.4 and newer, you can enable the extension using your neon config.

extensions:
	prependRoute: FreezyBee\PrependRoute\DI\PrependRouteExtension

Documentation

Usage

Your extension MUST implements interface FreezyBee\PrependRoute\DI\IPrependRouteProvider.

class TestExtension extends CompilerExtension implements IPrependRouteProvider
{
    public function loadConfiguration(): void
    {
        // register route service (testRoute)
        ...
    }

    /**
     * Return array of services - service MUST implements IRoute
     * @return string[]
     */
    public function getPrependRoutes(): array
    {
        return [$this->prefix('testRoute')];
    }
}