├── .github └── workflows │ └── running_the_tests.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── dependabot.yml ├── docs └── index.md ├── phpstan.dist.neon ├── phpunit.xml.dist ├── src ├── Annotation │ ├── ExcludeTokenValidationAttribute.php │ ├── Since.php │ └── Until.php ├── Controller │ └── KeycloakController.php ├── DTO │ ├── GroupRepresentationDTO.php │ ├── KeycloakAuthorizationCodeEnum.php │ ├── RoleRepresentationDTO.php │ ├── ScopeRepresentationDTO.php │ └── UserRepresentationDTO.php ├── DependencyInjection │ ├── Configuration.php │ └── MainickKeycloakClientExtension.php ├── EventSubscriber │ ├── ExceptionListener.php │ ├── LogoutAuthListener.php │ └── TokenAuthListener.php ├── Exception │ ├── KeycloakAuthenticationException.php │ ├── PropertyDoesNotExistException.php │ └── TokenDecoderException.php ├── Interface │ ├── AccessTokenInterface.php │ ├── IamAdminClientInterface.php │ ├── IamClientInterface.php │ ├── ResourceOwnerInterface.php │ └── TokenDecoderInterface.php ├── MainickKeycloakClientBundle.php ├── Provider │ ├── KeycloakAdminClient.php │ └── KeycloakClient.php ├── Representation │ ├── ClientRepresentation.php │ ├── ClientScopeRepresentation.php │ ├── Collection │ │ ├── ClientCollection.php │ │ ├── ClientScopeCollection.php │ │ ├── Collection.php │ │ ├── CredentialCollection.php │ │ ├── GroupCollection.php │ │ ├── ProtocolMapperCollection.php │ │ ├── RealmCollection.php │ │ ├── RoleCollection.php │ │ ├── UPAttributeCollection.php │ │ ├── UPGroupCollection.php │ │ ├── UserCollection.php │ │ ├── UserConsentCollection.php │ │ ├── UserProfileAttributeGroupMetadataCollection.php │ │ ├── UserProfileAttributeMetadataCollection.php │ │ └── UserSessionCollection.php │ ├── Composites.php │ ├── CredentialRepresentation.php │ ├── GroupRepresentation.php │ ├── ProtocolMapperRepresentation.php │ ├── RealmRepresentation.php │ ├── Representation.php │ ├── RoleRepresentation.php │ ├── RolesRepresentation.php │ ├── Type │ │ ├── Map.php │ │ └── Type.php │ ├── UPAttribute.php │ ├── UPAttributePermissions.php │ ├── UPAttributeRequired.php │ ├── UPAttributeSelector.php │ ├── UPConfig.php │ ├── UPGroup.php │ ├── UnmanagedAttributePolicyEnum.php │ ├── UserConsentRepresentation.php │ ├── UserProfileAttributeGroupMetadata.php │ ├── UserProfileAttributeMetadata.php │ ├── UserProfileMetadata.php │ ├── UserRepresentation.php │ └── UserSessionRepresentation.php ├── Resources │ └── config │ │ ├── routing.yaml │ │ ├── security.yaml │ │ └── services.yaml ├── Security │ ├── Authenticator │ │ └── KeycloakAuthenticator.php │ ├── EntryPoint │ │ └── KeycloakAuthenticationEntryPoint.php │ └── User │ │ └── KeycloakUserProvider.php ├── Serializer │ ├── AttributeNormalizer.php │ ├── CollectionDenormalizer.php │ ├── MapDenormalizer.php │ ├── MapNormalizer.php │ ├── RepresentationDenormalizer.php │ └── Serializer.php ├── Service │ ├── ClientsService.php │ ├── Criteria.php │ ├── GroupsService.php │ ├── HttpMethodEnum.php │ ├── RealmsService.php │ ├── RolesService.php │ ├── Service.php │ └── UsersService.php └── Token │ ├── AccessToken.php │ ├── HS256TokenDecoder.php │ ├── KeycloakResourceOwner.php │ ├── RS256TokenDecoder.php │ └── TokenDecoderFactory.php └── tests ├── EventSubscriber └── TokenAuthListenerTest.php ├── Provider └── KeycloakClientTest.php ├── Security └── KeycloakAuthenticatorTest.php ├── Serializer └── CollectionDenormalizerTest.php ├── Service ├── ClientsServiceTest.php ├── GroupsServiceTest.php ├── RealmsServiceTest.php ├── RolesServiceTest.php └── UsersServiceTest.php └── bootstrap.php /.github/workflows/running_the_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/.github/workflows/running_the_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/composer.json -------------------------------------------------------------------------------- /dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/dependabot.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.dist.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/phpstan.dist.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Annotation/ExcludeTokenValidationAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Annotation/ExcludeTokenValidationAttribute.php -------------------------------------------------------------------------------- /src/Annotation/Since.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Annotation/Since.php -------------------------------------------------------------------------------- /src/Annotation/Until.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Annotation/Until.php -------------------------------------------------------------------------------- /src/Controller/KeycloakController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Controller/KeycloakController.php -------------------------------------------------------------------------------- /src/DTO/GroupRepresentationDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/DTO/GroupRepresentationDTO.php -------------------------------------------------------------------------------- /src/DTO/KeycloakAuthorizationCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/DTO/KeycloakAuthorizationCodeEnum.php -------------------------------------------------------------------------------- /src/DTO/RoleRepresentationDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/DTO/RoleRepresentationDTO.php -------------------------------------------------------------------------------- /src/DTO/ScopeRepresentationDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/DTO/ScopeRepresentationDTO.php -------------------------------------------------------------------------------- /src/DTO/UserRepresentationDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/DTO/UserRepresentationDTO.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/MainickKeycloakClientExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/DependencyInjection/MainickKeycloakClientExtension.php -------------------------------------------------------------------------------- /src/EventSubscriber/ExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/EventSubscriber/ExceptionListener.php -------------------------------------------------------------------------------- /src/EventSubscriber/LogoutAuthListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/EventSubscriber/LogoutAuthListener.php -------------------------------------------------------------------------------- /src/EventSubscriber/TokenAuthListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/EventSubscriber/TokenAuthListener.php -------------------------------------------------------------------------------- /src/Exception/KeycloakAuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Exception/KeycloakAuthenticationException.php -------------------------------------------------------------------------------- /src/Exception/PropertyDoesNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Exception/PropertyDoesNotExistException.php -------------------------------------------------------------------------------- /src/Exception/TokenDecoderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Exception/TokenDecoderException.php -------------------------------------------------------------------------------- /src/Interface/AccessTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Interface/AccessTokenInterface.php -------------------------------------------------------------------------------- /src/Interface/IamAdminClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Interface/IamAdminClientInterface.php -------------------------------------------------------------------------------- /src/Interface/IamClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Interface/IamClientInterface.php -------------------------------------------------------------------------------- /src/Interface/ResourceOwnerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Interface/ResourceOwnerInterface.php -------------------------------------------------------------------------------- /src/Interface/TokenDecoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Interface/TokenDecoderInterface.php -------------------------------------------------------------------------------- /src/MainickKeycloakClientBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/MainickKeycloakClientBundle.php -------------------------------------------------------------------------------- /src/Provider/KeycloakAdminClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Provider/KeycloakAdminClient.php -------------------------------------------------------------------------------- /src/Provider/KeycloakClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Provider/KeycloakClient.php -------------------------------------------------------------------------------- /src/Representation/ClientRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/ClientRepresentation.php -------------------------------------------------------------------------------- /src/Representation/ClientScopeRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/ClientScopeRepresentation.php -------------------------------------------------------------------------------- /src/Representation/Collection/ClientCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/ClientCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/ClientScopeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/ClientScopeCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/Collection.php -------------------------------------------------------------------------------- /src/Representation/Collection/CredentialCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/CredentialCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/GroupCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/GroupCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/ProtocolMapperCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/ProtocolMapperCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/RealmCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/RealmCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/RoleCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/RoleCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/UPAttributeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/UPAttributeCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/UPGroupCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/UPGroupCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/UserCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/UserCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/UserConsentCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/UserConsentCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/UserProfileAttributeGroupMetadataCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/UserProfileAttributeGroupMetadataCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/UserProfileAttributeMetadataCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/UserProfileAttributeMetadataCollection.php -------------------------------------------------------------------------------- /src/Representation/Collection/UserSessionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Collection/UserSessionCollection.php -------------------------------------------------------------------------------- /src/Representation/Composites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Composites.php -------------------------------------------------------------------------------- /src/Representation/CredentialRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/CredentialRepresentation.php -------------------------------------------------------------------------------- /src/Representation/GroupRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/GroupRepresentation.php -------------------------------------------------------------------------------- /src/Representation/ProtocolMapperRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/ProtocolMapperRepresentation.php -------------------------------------------------------------------------------- /src/Representation/RealmRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/RealmRepresentation.php -------------------------------------------------------------------------------- /src/Representation/Representation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Representation.php -------------------------------------------------------------------------------- /src/Representation/RoleRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/RoleRepresentation.php -------------------------------------------------------------------------------- /src/Representation/RolesRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/RolesRepresentation.php -------------------------------------------------------------------------------- /src/Representation/Type/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Type/Map.php -------------------------------------------------------------------------------- /src/Representation/Type/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/Type/Type.php -------------------------------------------------------------------------------- /src/Representation/UPAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UPAttribute.php -------------------------------------------------------------------------------- /src/Representation/UPAttributePermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UPAttributePermissions.php -------------------------------------------------------------------------------- /src/Representation/UPAttributeRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UPAttributeRequired.php -------------------------------------------------------------------------------- /src/Representation/UPAttributeSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UPAttributeSelector.php -------------------------------------------------------------------------------- /src/Representation/UPConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UPConfig.php -------------------------------------------------------------------------------- /src/Representation/UPGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UPGroup.php -------------------------------------------------------------------------------- /src/Representation/UnmanagedAttributePolicyEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UnmanagedAttributePolicyEnum.php -------------------------------------------------------------------------------- /src/Representation/UserConsentRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UserConsentRepresentation.php -------------------------------------------------------------------------------- /src/Representation/UserProfileAttributeGroupMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UserProfileAttributeGroupMetadata.php -------------------------------------------------------------------------------- /src/Representation/UserProfileAttributeMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UserProfileAttributeMetadata.php -------------------------------------------------------------------------------- /src/Representation/UserProfileMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UserProfileMetadata.php -------------------------------------------------------------------------------- /src/Representation/UserRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UserRepresentation.php -------------------------------------------------------------------------------- /src/Representation/UserSessionRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Representation/UserSessionRepresentation.php -------------------------------------------------------------------------------- /src/Resources/config/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Resources/config/routing.yaml -------------------------------------------------------------------------------- /src/Resources/config/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Resources/config/security.yaml -------------------------------------------------------------------------------- /src/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Resources/config/services.yaml -------------------------------------------------------------------------------- /src/Security/Authenticator/KeycloakAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Security/Authenticator/KeycloakAuthenticator.php -------------------------------------------------------------------------------- /src/Security/EntryPoint/KeycloakAuthenticationEntryPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Security/EntryPoint/KeycloakAuthenticationEntryPoint.php -------------------------------------------------------------------------------- /src/Security/User/KeycloakUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Security/User/KeycloakUserProvider.php -------------------------------------------------------------------------------- /src/Serializer/AttributeNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Serializer/AttributeNormalizer.php -------------------------------------------------------------------------------- /src/Serializer/CollectionDenormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Serializer/CollectionDenormalizer.php -------------------------------------------------------------------------------- /src/Serializer/MapDenormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Serializer/MapDenormalizer.php -------------------------------------------------------------------------------- /src/Serializer/MapNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Serializer/MapNormalizer.php -------------------------------------------------------------------------------- /src/Serializer/RepresentationDenormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Serializer/RepresentationDenormalizer.php -------------------------------------------------------------------------------- /src/Serializer/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Serializer/Serializer.php -------------------------------------------------------------------------------- /src/Service/ClientsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Service/ClientsService.php -------------------------------------------------------------------------------- /src/Service/Criteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Service/Criteria.php -------------------------------------------------------------------------------- /src/Service/GroupsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Service/GroupsService.php -------------------------------------------------------------------------------- /src/Service/HttpMethodEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Service/HttpMethodEnum.php -------------------------------------------------------------------------------- /src/Service/RealmsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Service/RealmsService.php -------------------------------------------------------------------------------- /src/Service/RolesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Service/RolesService.php -------------------------------------------------------------------------------- /src/Service/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Service/Service.php -------------------------------------------------------------------------------- /src/Service/UsersService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Service/UsersService.php -------------------------------------------------------------------------------- /src/Token/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Token/AccessToken.php -------------------------------------------------------------------------------- /src/Token/HS256TokenDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Token/HS256TokenDecoder.php -------------------------------------------------------------------------------- /src/Token/KeycloakResourceOwner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Token/KeycloakResourceOwner.php -------------------------------------------------------------------------------- /src/Token/RS256TokenDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Token/RS256TokenDecoder.php -------------------------------------------------------------------------------- /src/Token/TokenDecoderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/src/Token/TokenDecoderFactory.php -------------------------------------------------------------------------------- /tests/EventSubscriber/TokenAuthListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/EventSubscriber/TokenAuthListenerTest.php -------------------------------------------------------------------------------- /tests/Provider/KeycloakClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/Provider/KeycloakClientTest.php -------------------------------------------------------------------------------- /tests/Security/KeycloakAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/Security/KeycloakAuthenticatorTest.php -------------------------------------------------------------------------------- /tests/Serializer/CollectionDenormalizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/Serializer/CollectionDenormalizerTest.php -------------------------------------------------------------------------------- /tests/Service/ClientsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/Service/ClientsServiceTest.php -------------------------------------------------------------------------------- /tests/Service/GroupsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/Service/GroupsServiceTest.php -------------------------------------------------------------------------------- /tests/Service/RealmsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/Service/RealmsServiceTest.php -------------------------------------------------------------------------------- /tests/Service/RolesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/Service/RolesServiceTest.php -------------------------------------------------------------------------------- /tests/Service/UsersServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/Service/UsersServiceTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainick/KeycloakClientBundle/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------