Rémi Collin
Rémi Collin
+1 would love to see a L5 version of console. I use it all the time to copy/paste & test snippets of code. I'd be happy to help on the...
The Driver part is a work in progress, and yes the intent is to abstract from the Illuminate Query Builder and allow to bridge to other query builders. The goal...
The Driver was mostly implemented with the intent of integrating 3rd party DBAL based on `Illuminate\Database\QueryBuilder` (like https://github.com/jenssegers/laravel-mongodb) which Analogue is highly coupled to. In theory you could build a...
Noted! Quickly Aabout repositories, I felt that they should belong to the application layer, and that the package should not be opinionated on their implementation. Also using repositories is totally...
Not that I am aware of.
I made a refactoring of the hydration process but auto eager loading seems to work fine in my test. Can you show me what the dump of `return mapper(Role::class)->find($id);` contains...
I have no roadmap for it at the moment. There is some big refactoring work involved in order to implement this feature, and my main priorities are mostly focused on...
@michaelsadlon thanks for reporting this. The proxy library we implemented in 5.5 doesn't support serialization indeed : see https://github.com/Ocramius/ProxyManager/issues/342 I guess we should use the same strategy Eloquent uses to...
Thank you ! I usually group them by model/related group of models : ``` app/Actions/Users app/Actions/Orders ... ``` Though in biggest projects, I tend to make an `Actions` subfolder by...
@JeyKey : the register will grow only if you use adapters for your classes, otherwise classical DI works fine. Also I have a trick for generating adapters for all actions...