A PSR-15 middleware that uses Fast Route to resolve actions from the request path.
Use with Action Dispatcher to dispatch resolved actions using an Invoker, such as the one provided by PHP-DI.
A default configuration is provided for PHP-DI. In addition to the provided configuration, you need to provide an array of routes:
'routes' => [
[['GET', 'POST'], '/example/{id}', 'action.label'],
],