Robin Chalas
Robin Chalas
Hey @MisterGlass, I plan to review a bit the "encoding" part of this bundle for a v3, things are going too far, we've somehow rewritten the JOSE library this bundle...
Thank you, https://symfony.com/blog/new-in-symfony-5-1-configurable-php-preloading might help here. If one of you could try and confirm that would be great, or even submit a PR if possible :) Otherwise I'll have a...
What I meant is that, as a rule of thumb, decoration should be preferred over inheritance. Especially when it comes to third party code
The symfony security system is all about a User object (see its UserInterface and TokenInterface), you can't use it to perform authentication/authorization without such object. The role of this bundle...
Sorry, I don't get your issue. Can you please give more details about what you expect and what you obtain as a result?
Hey, Just tried under OSX/PHP 7.2/Symfony php webserver (debug mode) on the sandbox, token creation took ~600ms and verification ~400ms. So the issue probably comes from your system. Note that...
Thanks for opening this issue. We will remove the `namshi/jose` requirement in the next major version (3.0). FYI it's still here for BC reasons only and is not used by...
HI @FlorinAsavoaie, Could you try this: http://converter.rosstuck.com ?
@FlorinAsavoaie In fact we do not provide a schema for xml configuration. If nobody does it, I will work on this as soon as possible.
Doesn't your security miss a role hierarchy? Your `ROLE_ADMIN` does't fulfil the `IS_AUTHENTICATED_FULLY` requirement I guess. Try adding: ```yaml role_hierarchy: ROLE_ADMIN: [ROLE_USER] ```