laravel-doctrine / extensions

Extensions integration for Doctrine2 and Laravel

Home Page:http://laraveldoctrine.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Service providers order

guiwoda opened this issue · comments

As reported on the Slack channel, the GedmoExtensionsServiceProvider and the DoctrineServiceProvider may have interdependencies that fail when not properly ordered.

This was reported as not working:

[
    // ...
    DoctrineServiceProvider::class,
    GedmoExtensionsServiceProvider::class,
]

and this was reported as working:

[
    // ...
    GedmoExtensionsServiceProvider::class,
    DoctrineServiceProvider::class,
]