Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Taming Dependency Injection

Taming Dependency Injection

Symfony’s DependencyInjection component is one of its most powerful features, but its complexity can feel overwhelming. In this talk, we’ll demystify the beast by exploring the core concepts, common use cases, and best practices for working with Symfony DependencyInjection.

From understanding autowiring, autoconfiguration, service containers to advanced topics like compiler passes, this talk will provide practical insights to help you harness its full potential and unlock truly SOLID code.

Nicolas Grekas

March 17, 2025
Tweet

More Decks by Nicolas Grekas

Other Decks in Technology

Transcript

  1. @nicolasgrekas services: _defaults: autowire: true # Look at parameter types

    to auto-inject deps autoconfigure: true # Look at parent types to auto-register classes # Load every class in a namespace/directory as a service App\: resource: '../src/' # Add more service definitions when explicit configuration is needed config/services.yaml
  2. Auto-discovery Scan src/ for classes Register them as %FQCN% services

    Account for: #[When] #[WhenNot] #[Exclude] #[AsAlias] / singly-implemented interfaces @nicolasgrekas
  3. @nicolasgrekas Just Enjoy on your side #[AsEventListener] class MyRequestListener {

    public function __invoke(RequestEvent $event): void { // ... } }
  4. @nicolasgrekas Enjoy your rules class ChannelBroadcaster { public function __construct(

    #[AutowireIterator(ChannelInterface::class)] iterable $channels ) { // ... }
  5. @nicolasgrekas #[Autoconfigure(lazy: true)] class PlotFactory { public function __construct( #[Autowire(param:

    'kernel.debug')] private bool $debug, private HeavyDependency $heavyDependency, ) { } }
  6. @nicolasgrekas public function __construct( #[AutowireCallable(UriTemplate::class, 'expand')] UriExpanderInterface $expander, ) new

    class($uriTemplate->expand(...)) implements UriExpanderInterface { public function __construct( private \Closure $closure, ) { } public function expand(string $url, array $vars): string { return $this->closure->__invoke($url, $vars); } } $uriTemplate->expand(...)
  7. class Vimeo { public function __construct( #[AutowireInline( factory: [ScopingHttpClient::class, 'forBaseUri'],

    arguments: [ '$baseUri' => 'https://api.vimeo.com', '$defaultOptions' => [ 'auth_bearer' => '%env(VIMEO_ACCESS_TOKEN)%', 'headers' => ['Accept: application/vnd.vimeo.*+json'], ] ] )] private HttpClientInterface $vimeo, ) { } @nicolasgrekas