Uh oh!
There was an error while loading. Please reload this page.
Add symfony kernel adapter - #57
Conversation
The barrier to integrate drift should be relatively low, by integrating a symfony adapter, developers only need to require the drift/server package and change there kernel parent class to get started.
mmoreram
commented
Jun 29, 2020
@Deltachaos Interesting. So you mean that having a Symfony application we should be able to start working with the server in a blocking mode (important to say that), and starting turning the application a non-blocking one? Shouldn't we test this? |
Deltachaos
commented
Jul 9, 2020
@mmoreram yep. I guess most people start with an existing Symfony application when they want to integrate drift/reactphp. Therefore the first step of integration should be less invasive. |
mmoreram
commented
Jul 13, 2020
@Deltachaos The kernel is not something that you can switch. Basically because the Drift kernel avoid some events (terminate, for example). Maybe making this switch would cause some "false" issues. Anyway, this PR should test, at least, that by using it a request returns a response. At least this scenario. |
mmoreram
commented
Jan 26, 2021
I took the idea of that PR and opened this one - #85 Thanks for your amazing job :) |
The barrier to integrate drift should be relatively low, by integrating
a symfony adapter, developers only need to require the drift/server
package and change there kernel parent class to get started.