Download the PHP package alma-medical/keycloak-client without Composer
On this page you can find all versions of the php package alma-medical/keycloak-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download alma-medical/keycloak-client
More information about alma-medical/keycloak-client
Files in alma-medical/keycloak-client
Package keycloak-client
Short Description A PHP client for Keycloak REST API
License
Informations about the package keycloak-client
Keycloak REST API PHP client
This package provides a PHP wrapper for Keycloak REST API.
- Keycloak REST API PHP client
- Installation
- How to use it
- Get users
- Get user
- Cache
- Running tests
Installation
Run this command to integrate the Keycloak REST API client to your existing project:
composer require alma-medical/keycloak-client
How to use it
First of all we need to configure a oauth2 provider for authenticating against Keycloak. For that purpose we use the stevenmaguire/oauth2-keycloak package, a league/oauth2-client Keycloak provider. This is an example of how to do that:
Once we have our provider instance we need to create an API client:
Now we can call any api method with callMedthod()
function:
To make easier the parse of the responses, some methods have been implemented:
Get users
This method gets all the users:
Get user
This method get a user
Cache
You can use a Psr\Cache\CacheItemPoolInterface
to cache Keycloak tokens. To use it simply set your CacheItemPoolInterface
and the client will package will use it:
Running tests
To run the tests run the following command:
./vendor/bin/phpunit
All versions of keycloak-client with dependencies
psr/simple-cache Version ^1.0
symfony/cache Version ^4.4.0|^5.0
stevenmaguire/oauth2-keycloak Version ^2.1