3

I use from SonataAdminBundle when installed this bundle by composer show this error:

The service "sonata.block.service.container" has a dependency on a non-existent service "templating".
Kaveh Yzd
  • 119
  • 1
  • 12

1 Answers1

9

Make sure twig is installed and available in your configuration:

# app/config/config.yml

framework:
    # ...
    templating:
        engines: ['twig']

Source: Stack Overflow #47656816

Nicolas
  • 414
  • 4
  • 7