Dmitriy Gnatenko 2e430a556d Vendors updated il y a 3 ans
..
Annotation 9329362bd0 Symfony updated to 5.2 il y a 3 ans
DependencyInjection da31d8a6df Revert "Vendors updated" il y a 4 ans
Exception 2e430a556d Vendors updated il y a 3 ans
Generator 0b8749ecf8 Update vendors il y a 3 ans
Loader 2e430a556d Vendors updated il y a 3 ans
Matcher e5f3fbd37b Vendors updated il y a 3 ans
CHANGELOG.md 9329362bd0 Symfony updated to 5.2 il y a 3 ans
CompiledRoute.php da31d8a6df Revert "Vendors updated" il y a 4 ans
LICENSE e5f3fbd37b Vendors updated il y a 3 ans
README.md da31d8a6df Revert "Vendors updated" il y a 4 ans
RequestContext.php e5f3fbd37b Vendors updated il y a 3 ans
RequestContextAwareInterface.php da31d8a6df Revert "Vendors updated" il y a 4 ans
Route.php e5f3fbd37b Vendors updated il y a 3 ans
RouteCollection.php e5f3fbd37b Vendors updated il y a 3 ans
RouteCollectionBuilder.php 2e430a556d Vendors updated il y a 3 ans
RouteCompiler.php 0b8749ecf8 Update vendors il y a 3 ans
RouteCompilerInterface.php da31d8a6df Revert "Vendors updated" il y a 4 ans
Router.php 0b8749ecf8 Update vendors il y a 3 ans
RouterInterface.php da31d8a6df Revert "Vendors updated" il y a 4 ans
composer.json e5f3fbd37b Vendors updated il y a 3 ans

README.md

Routing Component

The Routing component maps an HTTP request to a set of configuration variables.

Getting Started

$ composer require symfony/routing
use App\Controller\BlogController;
use Symfony\Component\Routing\Generator\UrlGenerator;
use Symfony\Component\Routing\Matcher\UrlMatcher;
use Symfony\Component\Routing\RequestContext;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;

$route = new Route('/blog/{slug}', ['_controller' => BlogController::class]);
$routes = new RouteCollection();
$routes->add('blog_show', $route);

$context = new RequestContext();

// Routing can match routes with incoming requests
$matcher = new UrlMatcher($routes, $context);
$parameters = $matcher->match('/blog/lorem-ipsum');
// $parameters = [
//     '_controller' => 'App\Controller\BlogController',
//     'slug' => 'lorem-ipsum',
//     '_route' => 'blog_show'
// ]

// Routing can also generate URLs for a given route
$generator = new UrlGenerator($routes, $context);
$url = $generator->generate('blog_show', [
    'slug' => 'my-blog-post',
]);
// $url = '/blog/my-blog-post'

Resources