hautelook/templated-uri-bundle

Symfony2 Bundle that provides a RFC-6570 compatible router and URL Generator.

Package info

github.com/goetas/TemplatedUriBundle

Homepage

Type:symfony-bundle

pkg:composer/hautelook/templated-uri-bundle

Statistics

Installs: 1 791 394

Dependents: 22

Suggesters: 0

Stars: 1

Open Issues: 1

3.5.0 2023-01-19 19:11 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 08fe1cdbbd47ed2860fd25ba33b8d32d7d8604a8

  • Baldur Rensch <brensch.woop@gmail.com>

jsonxmlSymfony2urluriHATEOASRFC 6570

This package is auto-updated.

Last update: 2026-05-20 02:39:44 UTC


README

Symfony Bundle for the https://github.com/hautelook/TemplatedUriRouter library. hautelook/TemplatedUriRouter provides a RFC-6570 compatible Symfony router and URL Generator.

👁 Build Status
👁 SensioLabsInsight

Installation

Assuming you have installed composer, run the following command:

$ composer require hautelook/templated-uri-bundle

Now add the bundle to your Kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
 $bundles = array(
 // ...
 new Hautelook\TemplatedUriBundle\HautelookTemplatedUriBundle(),
 // ...
 );
}

If you are using Symfony Flex, this bundle is added automatically to your bundles.php file.

Usage

The bundle exposes a router service (hautelook.router.template) that will generate RFC-6570 compliant URLs. Here is a sample on how you could use it:

$templateLink = $container->get('hautelook.router.template')->generate('hautelook_demo_route',
 array(
 'page' => '{page}',
 'sort' => array('{sort}'),
 'filter' => array('{filter}'),
 )
);

This will produce a link similar to:

/demo?{&page}{&sort*}{&filter*}