I want to send data between one middleware to other. As one middleware passes, I want to add some JSON response and pass to next middleware. What can be the best possible way to do it in Slim 3.
For example:
$app->post('/main_route/','reset_password')->add('middleware2')->add('middleware1');
How can I send some JSON data from middleware1 to middleware2 and then to main route?