Frederik Schmitt
Frederik Schmitt
Allow setting `deletionProtectionEnabled` on DynamoDB tables.
adds a configuration for disabling revocation of refresh token after they were used. this configuration applies to all grant types that will be enabled. complies with `league/oauth2-server`: https://github.com/thephpleague/oauth2-server/blob/master/src/AuthorizationServer.php#L209-L215 ``` #...
Hey, the [oauth2-server](https://github.com/thephpleague/oauth2-server) library allows calling [AuthorizationServer::revokeRefreshTokens()](https://github.com/thephpleague/oauth2-server/blob/master/src/AuthorizationServer.php#L209-L215) to disable revoking of refresh tokens on all grant types that are being enabled. I'm struggling to find a way to actually set...
The Shopware Admin API has a very specific (JSON) format it responds with if an error occurs. This format looks e.g. like this (for `APP_ENV=dev`): ``` { "errors": [ {...
Hey, we've noticed that the library never uses the `base_uri` option when creating a Guzzle client or making requests. To better comply with RFC 3986 and how URIs are built,...