I have written an own HTTP library that implements the PSR-7 interfaces. I use this library in a second library that does some business logic and may return either a response or request in PSR-7 standard.
For my application I use Silex / Symfony modules. In the controller I have to return a Symfony response.
How can I transform a PSR-7 response to a Symfony response? I only find bridges for vice versa, transforming a Symfony response to a PSR-7 response.