Shared library with Authentication modules for validating JWT authorization headers and checking its scopes
The library uses Docker to run php and composer. To install Docker, follow the steps in the documentation.
To setup the project, run:
./mp.sh setup
Add a provider to set the Public Key
$this->app->singleton(JwtAuthenticator::class, function () {
return (new JwtAuthenticator())->setPublicKey(config('auth.public_key'));
});
The following commands are available for development:
./mp.sh composer <args>
- Run composer inside the container.
./mp.sh php <args>
- Run any command on the php container.
./mp.sh test <args>
- Run the PHPUnit tests.
All software by MyParcel.com is licensed under the MyParcel.com general terms and conditions.