ibexa / templated-uri-router
Fork of hautelook/templated-uri-router. Symfony2 RFC-6570 compatible router and URL Generator
v3.3.0
2021-09-10 08:34 UTC
Requires
- php: >=5.3.0
- symfony/routing: ~2.5|~3.0|^4.0|^5.0
Requires (Dev)
- phpunit/phpunit: ^4.8.35|^5.7|^6.5
Replaces
- hautelook/templated-uri-router: v3.3.0
This package is auto-updated.
Last update: 2024-10-23 12:25:52 UTC
README
Fork of hautelook/templated-uri-router
. Symfony2 UrlGenerator that provides a RFC-6570 compatible router and URL Generator.
Currently it is extremely naive, and incomplete.
However, it does what we need it to do. Contributions are welcome.
Installation
Run the following command (assuming you have composer.phar or composer binary installed), or
require ibexa/templated-uri-router
to your composer.json
and run composer install
:
$ composer require ibexa/templated-uri-router
Usage
# routing.yml hautelook_demo_route: pattern: /demo
use Hautelook\TemplatedUriRouter\Routing\Generator\Rfc6570Generator as TemplateGenerator; $templateGenerator = new TemplateGenerator($routes, $context); $templatedUri = $templateGenerator->generate('hautelook_demo_route', array( 'page' => '{page}', 'sort' => array('{sort}'), 'filter' => array('{filter}'), ));
This will produce a link similar to:
/demo{?page,sort*,filter*}
Bundle
The symfony2 bundle lives at https://github.com/hautelook/TemplatedUriBundle.