This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Description
After configuring Expressive 3 and oauth2 (0.4.0) with the actual docs, when i make a request for token i got a 404 error.
I selected zend-servicemanager, FastRoute in the default config.
Code to reproduce the issue
http -f POST localhost:8080/oauth grant_type=password client_id=client_test username=user_test password=test
HTTP/1.1 404 Not Found
Connection: close
Content-type: text/html; charset=UTF-8
Date: Fri, 23 Mar 2018 15:28:03 +0100
Host: localhost:8080
X-Powered-By: PHP/7.1.15-1+ubuntu16.04.1+deb.sury.org+2
Cannot POST http://localhost:8080/oauth
Expected results
JWT token
If i manually add a route in routes.php file, it is fine!
$app->route('/oauth', Zend\Expressive\Authentication\OAuth2\OAuth2Middleware::class, ['GET', 'POST'], 'oauth');