You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello 👋 I'm trying to use Htmx with Symfony+Roadrunner but run into a problem. Htmx bundles change Request/Response objects and because of it they don't work with roadrunner-bundle.
I tried https://github.com/tomcri/htmxfony with kernel and controller traits. Problem: requests are loosing POST parameters.
I tried https://github.com/seaworn/symfony-htmx with request factory and controller trait. Problem: roadrunner-bundle do not call Request::create and therefore factory isn't triggered.
Is there any way to make them work together?
The text was updated successfully, but these errors were encountered:
You can make your own implementation by implementing HttpFoundationWorkerInterface then swap current implementation in container using $service->register(HttpFoundationWorkerInterface::class, your-impl)
Hello 👋 I'm trying to use Htmx with Symfony+Roadrunner but run into a problem. Htmx bundles change Request/Response objects and because of it they don't work with roadrunner-bundle.
I tried https://github.com/tomcri/htmxfony with kernel and controller traits. Problem: requests are loosing POST parameters.
I tried https://github.com/seaworn/symfony-htmx with request factory and controller trait. Problem: roadrunner-bundle do not call Request::create and therefore factory isn't triggered.
Is there any way to make them work together?
The text was updated successfully, but these errors were encountered: