├── Command ├── CheckConfigCommand.php ├── EnableEncryptionConfigCommand.php ├── GenerateKeyPairCommand.php ├── GenerateTokenCommand.php └── MigrateConfigCommand.php ├── DependencyInjection ├── Compiler │ ├── ApiPlatformOpenApiPass.php │ ├── CollectPayloadEnrichmentsPass.php │ └── WireGenerateTokenCommandPass.php ├── Configuration.php ├── LexikJWTAuthenticationExtension.php └── Security │ └── Factory │ ├── JWTAuthenticatorFactory.php │ └── JWTUserFactory.php ├── Encoder ├── HeaderAwareJWTEncoderInterface.php ├── JWTEncoderInterface.php ├── LcobucciJWTEncoder.php └── WebTokenEncoder.php ├── Event ├── AuthenticationFailureEvent.php ├── AuthenticationSuccessEvent.php ├── BeforeJWEComputationEvent.php ├── JWTAuthenticatedEvent.php ├── JWTCreatedEvent.php ├── JWTDecodedEvent.php ├── JWTEncodedEvent.php ├── JWTExpiredEvent.php ├── JWTFailureEventInterface.php ├── JWTInvalidEvent.php └── JWTNotFoundEvent.php ├── EventListener ├── BlockJWTListener.php └── RejectBlockedTokenListener.php ├── Events.php ├── Exception ├── ExpiredTokenException.php ├── InvalidPayloadException.php ├── InvalidTokenException.php ├── JWTDecodeFailureException.php ├── JWTEncodeFailureException.php ├── JWTFailureException.php ├── MissingClaimException.php ├── MissingTokenException.php └── UserNotFoundException.php ├── Helper └── JWTSplitter.php ├── LICENSE ├── LexikJWTAuthenticationBundle.php ├── OpenApi └── OpenApiFactory.php ├── Resources └── config │ ├── api_platform.xml │ ├── blocklist_token.xml │ ├── console.xml │ ├── cookie.xml │ ├── jwt_manager.xml │ ├── key_loader.xml │ ├── lcobucci.xml │ ├── response_interceptor.xml │ ├── token_authenticator.xml │ ├── token_extractor.xml │ ├── web_token.xml │ ├── web_token_issuance.xml │ └── web_token_verification.xml ├── Response ├── JWTAuthenticationFailureResponse.php └── JWTAuthenticationSuccessResponse.php ├── Security ├── Authenticator │ ├── JWTAuthenticator.php │ └── Token │ │ └── JWTPostAuthenticationToken.php ├── Http │ ├── Authentication │ │ ├── AuthenticationFailureHandler.php │ │ └── AuthenticationSuccessHandler.php │ └── Cookie │ │ └── JWTCookieProvider.php └── User │ ├── JWTUser.php │ ├── JWTUserInterface.php │ ├── JWTUserProvider.php │ └── PayloadAwareUserProviderInterface.php ├── Services ├── BlockedToken │ └── CacheItemPoolBlockedTokenManager.php ├── BlockedTokenManagerInterface.php ├── JWSProvider │ ├── JWSProviderInterface.php │ └── LcobucciJWSProvider.php ├── JWTManager.php ├── JWTTokenManagerInterface.php ├── KeyLoader │ ├── AbstractKeyLoader.php │ ├── KeyDumperInterface.php │ ├── KeyLoaderInterface.php │ └── RawKeyLoader.php ├── PayloadEnrichment │ ├── ChainEnrichment.php │ ├── NullEnrichment.php │ └── RandomJtiEnrichment.php ├── PayloadEnrichmentInterface.php └── WebToken │ ├── AccessTokenBuilder.php │ └── AccessTokenLoader.php ├── Signature ├── CreatedJWS.php └── LoadedJWS.php ├── Subscriber └── AdditionalAccessTokenClaimsAndHeaderSubscriber.php ├── TokenExtractor ├── AuthorizationHeaderTokenExtractor.php ├── ChainTokenExtractor.php ├── CookieTokenExtractor.php ├── QueryParameterTokenExtractor.php ├── SplitCookieExtractor.php └── TokenExtractorInterface.php ├── composer.json ├── ecs.php └── rector.php /Command/CheckConfigCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Command/CheckConfigCommand.php -------------------------------------------------------------------------------- /Command/EnableEncryptionConfigCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Command/EnableEncryptionConfigCommand.php -------------------------------------------------------------------------------- /Command/GenerateKeyPairCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Command/GenerateKeyPairCommand.php -------------------------------------------------------------------------------- /Command/GenerateTokenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Command/GenerateTokenCommand.php -------------------------------------------------------------------------------- /Command/MigrateConfigCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Command/MigrateConfigCommand.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/ApiPlatformOpenApiPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/DependencyInjection/Compiler/ApiPlatformOpenApiPass.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/CollectPayloadEnrichmentsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/DependencyInjection/Compiler/CollectPayloadEnrichmentsPass.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/WireGenerateTokenCommandPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/DependencyInjection/Compiler/WireGenerateTokenCommandPass.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/LexikJWTAuthenticationExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/DependencyInjection/LexikJWTAuthenticationExtension.php -------------------------------------------------------------------------------- /DependencyInjection/Security/Factory/JWTAuthenticatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/DependencyInjection/Security/Factory/JWTAuthenticatorFactory.php -------------------------------------------------------------------------------- /DependencyInjection/Security/Factory/JWTUserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/DependencyInjection/Security/Factory/JWTUserFactory.php -------------------------------------------------------------------------------- /Encoder/HeaderAwareJWTEncoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Encoder/HeaderAwareJWTEncoderInterface.php -------------------------------------------------------------------------------- /Encoder/JWTEncoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Encoder/JWTEncoderInterface.php -------------------------------------------------------------------------------- /Encoder/LcobucciJWTEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Encoder/LcobucciJWTEncoder.php -------------------------------------------------------------------------------- /Encoder/WebTokenEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Encoder/WebTokenEncoder.php -------------------------------------------------------------------------------- /Event/AuthenticationFailureEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/AuthenticationFailureEvent.php -------------------------------------------------------------------------------- /Event/AuthenticationSuccessEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/AuthenticationSuccessEvent.php -------------------------------------------------------------------------------- /Event/BeforeJWEComputationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/BeforeJWEComputationEvent.php -------------------------------------------------------------------------------- /Event/JWTAuthenticatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/JWTAuthenticatedEvent.php -------------------------------------------------------------------------------- /Event/JWTCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/JWTCreatedEvent.php -------------------------------------------------------------------------------- /Event/JWTDecodedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/JWTDecodedEvent.php -------------------------------------------------------------------------------- /Event/JWTEncodedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/JWTEncodedEvent.php -------------------------------------------------------------------------------- /Event/JWTExpiredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/JWTExpiredEvent.php -------------------------------------------------------------------------------- /Event/JWTFailureEventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/JWTFailureEventInterface.php -------------------------------------------------------------------------------- /Event/JWTInvalidEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/JWTInvalidEvent.php -------------------------------------------------------------------------------- /Event/JWTNotFoundEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Event/JWTNotFoundEvent.php -------------------------------------------------------------------------------- /EventListener/BlockJWTListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/EventListener/BlockJWTListener.php -------------------------------------------------------------------------------- /EventListener/RejectBlockedTokenListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/EventListener/RejectBlockedTokenListener.php -------------------------------------------------------------------------------- /Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Events.php -------------------------------------------------------------------------------- /Exception/ExpiredTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/ExpiredTokenException.php -------------------------------------------------------------------------------- /Exception/InvalidPayloadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/InvalidPayloadException.php -------------------------------------------------------------------------------- /Exception/InvalidTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/InvalidTokenException.php -------------------------------------------------------------------------------- /Exception/JWTDecodeFailureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/JWTDecodeFailureException.php -------------------------------------------------------------------------------- /Exception/JWTEncodeFailureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/JWTEncodeFailureException.php -------------------------------------------------------------------------------- /Exception/JWTFailureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/JWTFailureException.php -------------------------------------------------------------------------------- /Exception/MissingClaimException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/MissingClaimException.php -------------------------------------------------------------------------------- /Exception/MissingTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/MissingTokenException.php -------------------------------------------------------------------------------- /Exception/UserNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Exception/UserNotFoundException.php -------------------------------------------------------------------------------- /Helper/JWTSplitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Helper/JWTSplitter.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /LexikJWTAuthenticationBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/LexikJWTAuthenticationBundle.php -------------------------------------------------------------------------------- /OpenApi/OpenApiFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/OpenApi/OpenApiFactory.php -------------------------------------------------------------------------------- /Resources/config/api_platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/api_platform.xml -------------------------------------------------------------------------------- /Resources/config/blocklist_token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/blocklist_token.xml -------------------------------------------------------------------------------- /Resources/config/console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/console.xml -------------------------------------------------------------------------------- /Resources/config/cookie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/cookie.xml -------------------------------------------------------------------------------- /Resources/config/jwt_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/jwt_manager.xml -------------------------------------------------------------------------------- /Resources/config/key_loader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/key_loader.xml -------------------------------------------------------------------------------- /Resources/config/lcobucci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/lcobucci.xml -------------------------------------------------------------------------------- /Resources/config/response_interceptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/response_interceptor.xml -------------------------------------------------------------------------------- /Resources/config/token_authenticator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/token_authenticator.xml -------------------------------------------------------------------------------- /Resources/config/token_extractor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/token_extractor.xml -------------------------------------------------------------------------------- /Resources/config/web_token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/web_token.xml -------------------------------------------------------------------------------- /Resources/config/web_token_issuance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/web_token_issuance.xml -------------------------------------------------------------------------------- /Resources/config/web_token_verification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Resources/config/web_token_verification.xml -------------------------------------------------------------------------------- /Response/JWTAuthenticationFailureResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Response/JWTAuthenticationFailureResponse.php -------------------------------------------------------------------------------- /Response/JWTAuthenticationSuccessResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Response/JWTAuthenticationSuccessResponse.php -------------------------------------------------------------------------------- /Security/Authenticator/JWTAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/Authenticator/JWTAuthenticator.php -------------------------------------------------------------------------------- /Security/Authenticator/Token/JWTPostAuthenticationToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/Authenticator/Token/JWTPostAuthenticationToken.php -------------------------------------------------------------------------------- /Security/Http/Authentication/AuthenticationFailureHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/Http/Authentication/AuthenticationFailureHandler.php -------------------------------------------------------------------------------- /Security/Http/Authentication/AuthenticationSuccessHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/Http/Authentication/AuthenticationSuccessHandler.php -------------------------------------------------------------------------------- /Security/Http/Cookie/JWTCookieProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/Http/Cookie/JWTCookieProvider.php -------------------------------------------------------------------------------- /Security/User/JWTUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/User/JWTUser.php -------------------------------------------------------------------------------- /Security/User/JWTUserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/User/JWTUserInterface.php -------------------------------------------------------------------------------- /Security/User/JWTUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/User/JWTUserProvider.php -------------------------------------------------------------------------------- /Security/User/PayloadAwareUserProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Security/User/PayloadAwareUserProviderInterface.php -------------------------------------------------------------------------------- /Services/BlockedToken/CacheItemPoolBlockedTokenManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/BlockedToken/CacheItemPoolBlockedTokenManager.php -------------------------------------------------------------------------------- /Services/BlockedTokenManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/BlockedTokenManagerInterface.php -------------------------------------------------------------------------------- /Services/JWSProvider/JWSProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/JWSProvider/JWSProviderInterface.php -------------------------------------------------------------------------------- /Services/JWSProvider/LcobucciJWSProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/JWSProvider/LcobucciJWSProvider.php -------------------------------------------------------------------------------- /Services/JWTManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/JWTManager.php -------------------------------------------------------------------------------- /Services/JWTTokenManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/JWTTokenManagerInterface.php -------------------------------------------------------------------------------- /Services/KeyLoader/AbstractKeyLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/KeyLoader/AbstractKeyLoader.php -------------------------------------------------------------------------------- /Services/KeyLoader/KeyDumperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/KeyLoader/KeyDumperInterface.php -------------------------------------------------------------------------------- /Services/KeyLoader/KeyLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/KeyLoader/KeyLoaderInterface.php -------------------------------------------------------------------------------- /Services/KeyLoader/RawKeyLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/KeyLoader/RawKeyLoader.php -------------------------------------------------------------------------------- /Services/PayloadEnrichment/ChainEnrichment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/PayloadEnrichment/ChainEnrichment.php -------------------------------------------------------------------------------- /Services/PayloadEnrichment/NullEnrichment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/PayloadEnrichment/NullEnrichment.php -------------------------------------------------------------------------------- /Services/PayloadEnrichment/RandomJtiEnrichment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/PayloadEnrichment/RandomJtiEnrichment.php -------------------------------------------------------------------------------- /Services/PayloadEnrichmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/PayloadEnrichmentInterface.php -------------------------------------------------------------------------------- /Services/WebToken/AccessTokenBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/WebToken/AccessTokenBuilder.php -------------------------------------------------------------------------------- /Services/WebToken/AccessTokenLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Services/WebToken/AccessTokenLoader.php -------------------------------------------------------------------------------- /Signature/CreatedJWS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Signature/CreatedJWS.php -------------------------------------------------------------------------------- /Signature/LoadedJWS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Signature/LoadedJWS.php -------------------------------------------------------------------------------- /Subscriber/AdditionalAccessTokenClaimsAndHeaderSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/Subscriber/AdditionalAccessTokenClaimsAndHeaderSubscriber.php -------------------------------------------------------------------------------- /TokenExtractor/AuthorizationHeaderTokenExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/TokenExtractor/AuthorizationHeaderTokenExtractor.php -------------------------------------------------------------------------------- /TokenExtractor/ChainTokenExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/TokenExtractor/ChainTokenExtractor.php -------------------------------------------------------------------------------- /TokenExtractor/CookieTokenExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/TokenExtractor/CookieTokenExtractor.php -------------------------------------------------------------------------------- /TokenExtractor/QueryParameterTokenExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/TokenExtractor/QueryParameterTokenExtractor.php -------------------------------------------------------------------------------- /TokenExtractor/SplitCookieExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/TokenExtractor/SplitCookieExtractor.php -------------------------------------------------------------------------------- /TokenExtractor/TokenExtractorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/TokenExtractor/TokenExtractorInterface.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/composer.json -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/ecs.php -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexik/LexikJWTAuthenticationBundle/HEAD/rector.php --------------------------------------------------------------------------------