[TwigComponent] Allow standalone usage with any PSR-11 container - #3602
Merged
Merged
Conversation
guillaume-sainthillier
force-pushed
the
twig-ux-component-psr
branch
from
June 8, 2026 08:13
1d3c57e to
3552508
Compare
Kocal
force-pushed
the
twig-ux-component-psr
branch
from
June 11, 2026 20:32
3552508 to
8180244
Compare
Kocal
approved these changes
Jun 11, 2026
Member
|
Thank you @guillaume-sainthillier. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allow TwigComponent's runtime to work without
symfony/dependency-injection.ComponentFactoryandComponentRuntimeonly ever callget()/has()ontheir injected service locator. Both methods are defined by PSR-11
Psr\Container\ContainerInterface, which Symfony'sServiceLocatoralreadyimplements — so the injection points can be typehinted against the interface
instead of the concrete class.
This decouples the runtime classes from the DI component: they can now be
wired with any PSR-11 container, enabling standalone (non-Symfony) usage with
just Twig.
symfony/dependency-injectionmoves torequire-dev(still pulledtransitively via
symfony/framework-bundlein a full Symfony app, and onlyneeded at runtime for the bundle's extension/compiler-pass classes).