feature #1508 Added WebLink component integration (skalpa)
This PR was merged into the 2.1.x-dev branch. Discussion ---------- Added WebLink component integration I made the necessary changes to support the new WebLink component: - `HttpKernelServiceProvider` registers the `AddLinkHeaderListener` if the component is available - `TwigServiceProvider` adds the `WebLinkExtension` if the component and the Twig bridge are available - Both changes are tested - The documentation has been amended (the link to the Symfony website doesn't work as 3.3 hasn't been released yet but I believe it's the good URL) Commits ------- 37bd5aed Added WebLink component integration
Showing
... | ... | @@ -47,7 +47,8 @@ |
"twig/twig": "~1.28|~2.0", | ||
"doctrine/dbal": "~2.2", | ||
"swiftmailer/swiftmailer": "~5", | ||
"monolog/monolog": "^1.4.1" | ||
"monolog/monolog": "^1.4.1", | ||
"symfony/web-link": "^3.3" | ||
}, | ||
"replace": { | ||
"silex/api": "self.version", | ||
... | ... |
Please register or sign in to comment