laravel-doctrine / extensions

Extensions integration for Doctrine2 and Laravel
http://laraveldoctrine.org/
MIT License
48 stars 24 forks source link

Service providers order #22

Closed guiwoda closed 8 years ago

guiwoda commented 8 years ago

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,
]