Routing Component
The Routing component maps an HTTP request to a set of configuration variables.
…s (nicolas-grekas) This PR was merged into the 3.2-dev branch. Discussion ---------- [Routing] Add seamless support for unicode requirements | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | yes | Tests pass? | yes | Fixed tickets | #3629, #5236, #19562 | License | MIT | Doc PR | symfony/symfony-docs#6890 This PR adds unicode support to route matching and generation by automatically adding the `u` modifier to regexps that use either unicode characters or unicode enabled character classes (e.g. `\p...` `\x{...}` `\X`). As a side note, if one wants to match a single unicode character (vs a single byte), one should use `\PM` or `\X` instead of `.` *or* set the `unicode` parameter to true. Commits ------- a829d34 [Routing] Add seamless support for unicode requirements
| Failed to load latest commit information. | |||
|
|
Annotation |
|
|
|
|
Exception |
|
|
|
|
Generator |
|
|
|
|
Loader |
|
|
|
|
Matcher |
|
|
|
|
Tests |
|
|
|
|
.gitignore |
|
|
|
|
CHANGELOG.md |
|
|
|
|
CompiledRoute.php |
|
|
|
|
LICENSE |
|
|
|
|
README.md |
|
|
|
|
RequestContext.php |
|
|
|
|
RequestContextAwareInterface.php |
|
|
|
|
Route.php |
|
|
|
|
RouteCollection.php |
|
|
|
|
RouteCollectionBuilder.php |
|
|
|
|
RouteCompiler.php |
|
|
|
|
RouteCompilerInterface.php |
|
|
|
|
Router.php |
|
|
|
|
RouterInterface.php |
|
|
|
|
composer.json |
|
|
|
|
phpunit.xml.dist |
|
|
The Routing component maps an HTTP request to a set of configuration variables.