Radar.Adr
Radar.Adr copied to clipboard
The Action-Domain-Responder core for Radar.
Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. Changelog Sourced from phpunit/phpunit's changelog. [8.5.8] - 2020-06-22 Fixed #4312: Fix for #4299 breaks backward compatibility [8.5.7] - 2020-06-21 Fixed...
Updates the requirements on [relay/relay](https://github.com/relayphp/Relay.Relay) to permit the latest version. Release notes Sourced from relay/relay's releases. 2.1.1 Fix a bug where Traversable queues (non-array iterables) will fail because the reset(),...
relay/middleware is abadoned. Are there plans to develop an uptodate version of radar-adr?
@pmjones What do you think of providing a way to access the DI container via the `Radar\Adr\Adr` instance returned by the `Radar\Adr\Boot::boot()` method? I'm thinking this is parallel to the...
The default `Input` class does this: ```php return [ array_replace( (array) $request->getQueryParams(), (array) $request->getParsedBody(), (array) $request->getUploadedFiles(), // my issue is here (array) $request->getCookieParams(), (array) $request->getAttributes() ) ]; ``` I think...
This isn't meant to be merged in. Given the magnitude of changes made here, I just wanted to get initial reactions. Is this a direction the maintainers want to take...
For your consideration: It occurs to me a Responder should rarely ever convert an error status returned from a Domain object into an HTTP 400 status code. Presently, the model...