Kaveh Yzd
Kaveh Yzd

Reputation: 117

The service "sonata.block.service.container" has a dependency on a non-existent service "templating"

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".

Upvotes: 3

Views: 1424

Answers (1)

Nicolas
Nicolas

Reputation: 414

Make sure twig is installed and available in your configuration:

# app/config/config.yml

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

Source: Stack Overflow #47656816

Upvotes: 9

Related Questions