This is the integration testing tool for the PSR-JWT Library. It spins up a simple Slim PHP based website which allows you to check the PSR-JWT middleware works as expected in the wild.
Requires Docker, and has two environments, one for standard web checks and one for making CURL requests for testing the bearer token implementation.
Spin up environments:
docker-compose up -d
Turn on website:
docker-compose exec psr-jwt bash
composer update
php -S 0.0.0.0:8080 -t public
Turn on CURL endpoints:
docker-compose exec curl php -S 0.0.0.0:8888
Once everything on you can access and navigate the site at localhost:8080.