symfony Configurations -- Ошибка The Doctrine connection "default" referenced in service "" does not exist

Ошибка

После установки StofDoctrineExtensionsBundle(как например здесь) выпадает ошибка:

The Doctrine connection "default" referenced in service "stof_doctrine_exte
nsions.listener.timestampable" does not exist. Available connections names:
pgsql

Решение

При настройке конфигураций неверно указано название соединения. Если у вас (как у меня) соединение с БД имеет название, вам следует изменить слово default на имя соединения:

doctrine:
    orm:
        auto_mapping: true

stof_doctrine_extensions:
    orm:
        default:
            sluggable: true
            timestampable: true