├── .github ├── FUNDING.yml ├── dependabot.yml ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md └── workflows │ ├── rector_checkstyle.yaml │ ├── twig-lint.yml │ ├── static-analyze.yml │ ├── tests.yml │ └── coding-standards.yml ├── .gitignore ├── tests ├── config │ ├── http.yml │ ├── webfinger.yml │ ├── jose.yml │ └── routing.yml ├── TestBundle │ ├── TestBundle.php │ ├── DependencyInjection │ │ └── TestExtension.php │ ├── Repository │ │ ├── ConsentRepository.php │ │ ├── ResourceServerRepository.php │ │ ├── TrustedIssuerRepository.php │ │ └── AuthorizationRepository.php │ └── Entity │ │ ├── ResourceServer.php │ │ └── Client.php └── Component │ ├── FakeFormPostRenderer.php │ ├── ClientConfigurationEndpoint │ └── ClientConfigurationRouteRule.php │ ├── Core │ ├── DataBag │ │ └── DataBagTest.php │ └── TokenType │ │ └── TokenTypeMiddlewareTest.php │ ├── FakeLoginHandler.php │ ├── FakeConsentHandler.php │ ├── FakeSelectAccountHandler.php │ ├── AuthorizationEndpoint │ └── ResponseTypeManagerTest.php │ ├── MetadataEndpoint │ └── MetadataTest.php │ └── ResourceServerAuthentication │ └── AuthenticationMethodManagerTest.php ├── src ├── ServerBundle │ ├── Resources │ │ ├── config │ │ │ ├── routing │ │ │ │ └── routing.yml │ │ │ ├── core │ │ │ │ ├── client.php │ │ │ │ ├── access_token.php │ │ │ │ └── services.php │ │ │ ├── doctrine-mapping │ │ │ │ ├── Client │ │ │ │ │ └── AbstractClient.orm.yml │ │ │ │ ├── ClientRegistrationEndpoint │ │ │ │ │ └── AbstractAccessToken.orm.yml │ │ │ │ ├── AccessToken │ │ │ │ │ └── AbstractAccessToken.orm.yml │ │ │ │ ├── RefreshTokenGrant │ │ │ │ │ └── AbstractAccessToken.orm.yml │ │ │ │ └── AuthorizationCodeGrant │ │ │ │ │ └── AbstractAuthorizationCode.orm.yml │ │ │ ├── client_authentication │ │ │ │ ├── none.php │ │ │ │ ├── client_secret_post.php │ │ │ │ ├── client_secret_basic.php │ │ │ │ └── client_assertion_jwt.php │ │ │ ├── scope │ │ │ │ ├── policy.php │ │ │ │ ├── policy_error.php │ │ │ │ └── policy_default.php │ │ │ ├── grant │ │ │ │ ├── client_credentials.php │ │ │ │ ├── none.php │ │ │ │ ├── grant.php │ │ │ │ └── implicit.php │ │ │ ├── resource_server │ │ │ │ ├── resource_server.php │ │ │ │ └── authentication_middleware.php │ │ │ ├── token_type │ │ │ │ └── bearer_token.php │ │ │ ├── endpoint │ │ │ │ └── authorization │ │ │ │ │ ├── sector_identifier_uri.php │ │ │ │ │ └── form_post_response_mode.php │ │ │ └── openid_connect │ │ │ │ ├── id_token_hint.php │ │ │ │ ├── response_type │ │ │ │ ├── id_token_token.php │ │ │ │ ├── code_token.php │ │ │ │ └── code_id_token.php │ │ │ │ └── userinfo_scope_support.php │ │ ├── translations │ │ │ ├── validators.en.yml │ │ │ ├── validators.fr.yml │ │ │ ├── OAuth2FrameworkServer.en.yml │ │ │ └── OAuth2FrameworkServer.fr.yml │ │ └── views │ │ │ └── form_post │ │ │ ├── response.html.twig │ │ │ ├── response_header.html.twig │ │ │ └── response_body.html.twig │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── Service │ │ ├── IgnoreAccountSelectionHandler.php │ │ └── TwigFormPostResponseRenderer.php │ ├── Component │ │ ├── Component.php │ │ ├── Endpoint │ │ │ ├── Authorization │ │ │ │ └── Compiler │ │ │ │ │ └── TemplatePathCompilerPass.php │ │ │ ├── Metadata │ │ │ │ └── Compiler │ │ │ │ │ ├── CommonMetadataCompilerPass.php │ │ │ │ │ ├── CustomValuesCompilerPass.php │ │ │ │ │ └── CustomRoutesCompilerPass.php │ │ │ └── JwksUri │ │ │ │ └── JwksUriEndpointRouteCompilerPass.php │ │ ├── Scope │ │ │ └── Compiler │ │ │ │ └── ScopeMetadataCompilerPass.php │ │ ├── ClientRule │ │ │ └── ClientRuleCompilerPass.php │ │ └── OpenIdConnect │ │ │ └── Compiler │ │ │ ├── UserInfoPairwiseSubjectCompilerPass.php │ │ │ ├── ClaimCompilerPass.php │ │ │ └── ClaimSourceCompilerPass.php │ └── DependencyInjection │ │ ├── Compiler │ │ └── HttpClientCompilerPass.php │ │ └── Configuration.php ├── Component │ ├── Core │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── UserAccount │ │ │ ├── UserAccountRepository.php │ │ │ ├── UserAccountId.php │ │ │ └── UserAccount.php │ │ ├── TrustedIssuer │ │ │ ├── TrustedIssuerRepository.php │ │ │ └── TrustedIssuer.php │ │ ├── ResourceServer │ │ │ ├── ResourceServer.php │ │ │ ├── ResourceServerRepository.php │ │ │ └── ResourceServerId.php │ │ ├── Message │ │ │ ├── MessageExtension.php │ │ │ └── Factory │ │ │ │ ├── BadRequestResponseFactory.php │ │ │ │ ├── AccessDeniedResponseFactory.php │ │ │ │ ├── NotImplementedResponseFactory.php │ │ │ │ ├── MethodNotAllowedResponseFactory.php │ │ │ │ └── ResponseFactory.php │ │ ├── Client │ │ │ ├── ClientId.php │ │ │ └── ClientRepository.php │ │ ├── ResourceOwner │ │ │ ├── ResourceOwner.php │ │ │ └── ResourceOwnerId.php │ │ ├── README.md │ │ ├── AccessToken │ │ │ └── AccessTokenId.php │ │ ├── Middleware │ │ │ ├── TerminalRequestHandler.php │ │ │ ├── Consumer.php │ │ │ └── OAuth2MessageMiddleware.php │ │ ├── phpunit.xml.dist │ │ ├── composer.json │ │ └── TokenType │ │ │ └── TokenTypeGuesser.php │ ├── ImplicitGrant │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ └── phpunit.xml.dist │ ├── NoneGrant │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── AuthorizationStorage.php │ │ ├── README.md │ │ ├── phpunit.xml.dist │ │ └── composer.json │ ├── OpenIdConnect │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── UserInfo │ │ │ ├── ScopeSupport │ │ │ │ ├── UserInfoScopeSupport.php │ │ │ │ ├── OpenIdScopeSupport.php │ │ │ │ ├── AddressScopeSupport.php │ │ │ │ ├── EmailScopeSupport.php │ │ │ │ ├── PhoneScopeSupport.php │ │ │ │ └── ProfileScopeSupport.php │ │ │ ├── Claim │ │ │ │ ├── ClaimSource.php │ │ │ │ ├── Claim.php │ │ │ │ ├── Locale.php │ │ │ │ ├── Birthdate.php │ │ │ │ ├── Zoneinfo.php │ │ │ │ ├── UpdatedAt.php │ │ │ │ ├── EmailVerified.php │ │ │ │ ├── AuthenticationTime.php │ │ │ │ ├── PhoneNumberVerified.php │ │ │ │ ├── Source.php │ │ │ │ ├── Name.php │ │ │ │ ├── Email.php │ │ │ │ ├── Gender.php │ │ │ │ ├── Address.php │ │ │ │ ├── Picture.php │ │ │ │ ├── Profile.php │ │ │ │ ├── Website.php │ │ │ │ ├── GivenName.php │ │ │ │ ├── Nickname.php │ │ │ │ ├── FamilyName.php │ │ │ │ ├── MiddleName.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── PreferredUsername.php │ │ │ └── Pairwise │ │ │ │ └── PairwiseSubjectIdentifierAlgorithm.php │ │ └── IdTokenId.php │ ├── TokenEndpoint │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── phpunit.xml.dist │ │ ├── Extension │ │ │ └── TokenEndpointExtension.php │ │ └── GrantType.php │ ├── BearerTokenType │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── TokenFinder.php │ │ ├── QueryStringTokenFinder.php │ │ ├── README.md │ │ ├── RequestBodyTokenFinder.php │ │ ├── AuthorizationHeaderTokenFinder.php │ │ ├── phpunit.xml.dist │ │ └── composer.json │ ├── JwtBearerGrant │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ └── phpunit.xml.dist │ ├── MetadataEndpoint │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── phpunit.xml.dist │ │ └── Metadata.php │ ├── RefreshTokenGrant │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── RefreshTokenId.php │ │ ├── phpunit.xml.dist │ │ └── RefreshTokenRepository.php │ ├── WebFingerEndpoint │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── IdentifierResolver │ │ │ ├── IdentifierResolver.php │ │ │ ├── Identifier.php │ │ │ ├── UriResolver.php │ │ │ └── IdentifierResolverManager.php │ │ ├── ResourceRepository.php │ │ ├── README.md │ │ └── phpunit.xml.dist │ ├── AuthorizationCodeGrant │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── PKCEMethod │ │ │ ├── PKCEMethod.php │ │ │ ├── Plain.php │ │ │ ├── S256.php │ │ │ └── PKCEMethodManager.php │ │ ├── README.md │ │ ├── AuthorizationCodeId.php │ │ └── phpunit.xml.dist │ ├── AuthorizationEndpoint │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── ResponseMode │ │ │ ├── FormPostResponseRenderer.php │ │ │ └── ResponseMode.php │ │ ├── User │ │ │ ├── UserAccountDiscovery.php │ │ │ ├── UserAuthenticationChecker.php │ │ │ ├── AuthenticationContextClassReferenceSupport.php │ │ │ ├── AuthenticationMethodReferenceSupport.php │ │ │ └── UserAuthenticationCheckerManager.php │ │ ├── ConsentHandler.php │ │ ├── LoginHandler.php │ │ ├── ParameterChecker │ │ │ ├── ParameterChecker.php │ │ │ └── StateParameterChecker.php │ │ ├── SelectAccountHandler.php │ │ ├── AuthorizationRequestHandler.php │ │ ├── Extension │ │ │ ├── Extension.php │ │ │ └── ExtensionManager.php │ │ ├── Hook │ │ │ └── AuthorizationEndpointHook.php │ │ ├── README.md │ │ ├── Consent │ │ │ └── ConsentRepository.php │ │ ├── AuthorizationRequestStorage.php │ │ ├── Exception │ │ │ └── OAuth2AuthorizationException.php │ │ └── phpunit.xml.dist │ ├── ClientCredentialsGrant │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ └── phpunit.xml.dist │ ├── TokenRevocationEndpoint │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── TokenTypeHint.php │ │ ├── README.md │ │ ├── TokenTypeHintManager.php │ │ ├── TokenRevocationPostEndpoint.php │ │ └── phpunit.xml.dist │ ├── ClientConfigurationEndpoint │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ └── phpunit.xml.dist │ ├── ClientRegistrationEndpoint │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── InitialAccessTokenId.php │ │ ├── InitialAccessToken.php │ │ ├── InitialAccessTokenRepository.php │ │ └── phpunit.xml.dist │ ├── TokenIntrospectionEndpoint │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── TokenTypeHint.php │ │ ├── README.md │ │ ├── TokenTypeHintManager.php │ │ └── phpunit.xml.dist │ ├── ResourceOwnerPasswordCredentialsGrant │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── ResourceOwnerWithPasswordCredential.php │ │ ├── ResourceOwnerPasswordCredentialManager.php │ │ ├── README.md │ │ └── phpunit.xml.dist │ ├── Scope │ │ ├── ScopeRepository.php │ │ ├── Scope.php │ │ ├── Policy │ │ │ ├── NoScopePolicy.php │ │ │ ├── ScopePolicy.php │ │ │ ├── ErrorScopePolicy.php │ │ │ └── DefaultScopePolicy.php │ │ ├── README.md │ │ ├── Checker.php │ │ └── phpunit.xml.dist │ ├── ClientRule │ │ ├── Rule.php │ │ ├── README.md │ │ ├── RuleHandler.php │ │ ├── ClientIdIssuedAtRule.php │ │ ├── phpunit.xml.dist │ │ └── composer.json │ ├── ClientAuthentication │ │ ├── README.md │ │ └── phpunit.xml.dist │ └── ResourceServerAuthentication │ │ ├── README.md │ │ └── phpunit.xml.dist ├── SecurityBundle │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── Annotation │ │ └── Checker │ │ │ ├── Checker.php │ │ │ ├── ClientIdChecker.php │ │ │ ├── ResourceOwnerIdChecker.php │ │ │ └── TokenTypeChecker.php │ ├── DependencyInjection │ │ ├── OAuth2FrameworkSecurityExtension.php │ │ └── Compiler │ │ │ └── TokenTypeCompilerPass.php │ └── Security │ │ └── Authentication │ │ ├── AccessTokenBadge.php │ │ └── ResourceOwner.php └── WebFingerBundle │ ├── .github │ └── PULL_REQUEST_TEMPLATE.md │ ├── Resources │ └── config │ │ └── routing │ │ └── routing.php │ ├── Middleware │ ├── TerminalRequestHandler.php │ ├── Consumer.php │ └── Pipe.php │ └── OAuth2FrameworkWebFingerBundle.php └── infection.json.dist /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: FlorentMorselli 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.cache 2 | composer.lock 3 | oidctest/ 4 | -------------------------------------------------------------------------------- /tests/config/http.yml: -------------------------------------------------------------------------------- 1 | services: 2 | _defaults: 3 | public: true 4 | 5 | Nyholm\Psr7\Factory\Psr17Factory: ~ 6 | -------------------------------------------------------------------------------- /src/ServerBundle/Resources/config/routing/routing.yml: -------------------------------------------------------------------------------- 1 | oauth2_server_routes: 2 | resource: '.' 3 | type: 'oauth2_server' 4 | -------------------------------------------------------------------------------- /tests/config/webfinger.yml: -------------------------------------------------------------------------------- 1 | webfinger: 2 | path: '/.well-known/webfinger' 3 | resource_repository: 'OAuth2Framework\Tests\TestBundle\Entity\ResourceRepository' 4 | -------------------------------------------------------------------------------- /src/ServerBundle/Resources/translations/validators.en.yml: -------------------------------------------------------------------------------- 1 | spomky_labs: 2 | oauth2_server: 3 | password: 4 | mismatch: 'The entered passwords do not match' 5 | -------------------------------------------------------------------------------- /src/ServerBundle/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/Core/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/oauth2-framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/SecurityBundle/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/ServerBundle/Resources/translations/validators.fr.yml: -------------------------------------------------------------------------------- 1 | spomky_labs: 2 | oauth2_server: 3 | password: 4 | mismatch: 'Les deux mots de passe ne sont pas identiques' 5 | -------------------------------------------------------------------------------- /src/WebFingerBundle/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/ImplicitGrant/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/NoneGrant/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/OpenIdConnect/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/TokenEndpoint/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /tests/config/jose.yml: -------------------------------------------------------------------------------- 1 | jose: 2 | jku_factory: 3 | enabled: true 4 | client: 'Psr\Http\Client\ClientInterface' 5 | request_factory: 'Nyholm\Psr7\Factory\Psr17Factory' 6 | -------------------------------------------------------------------------------- /src/Component/BearerTokenType/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/JwtBearerGrant/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/MetadataEndpoint/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/RefreshTokenGrant/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/WebFingerEndpoint/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/AuthorizationCodeGrant/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/oauth2-framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/AuthorizationEndpoint/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/ClientCredentialsGrant/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/TokenRevocationEndpoint/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: composer 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | time: "04:00" 8 | open-pull-requests-limit: 10 -------------------------------------------------------------------------------- /src/Component/ClientConfigurationEndpoint/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/ClientRegistrationEndpoint/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/TokenIntrospectionEndpoint/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /src/Component/ResourceOwnerPasswordCredentialsGrant/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please do not send any PR here. 2 | PRs should be send to the main repository at https://github.com/OAuth2-Framework/oauth2-framework 3 | -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- 1 | { 2 | "timeout": 10, 3 | "source": { 4 | "directories": [ 5 | "src" 6 | ] 7 | }, 8 | "logs": { 9 | "text": "infection-log.txt" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/ServerBundle/Resources/config/core/client.php: -------------------------------------------------------------------------------- 1 | import('.', 'webfinger'); 9 | }; 10 | -------------------------------------------------------------------------------- /src/ServerBundle/Resources/views/form_post/response.html.twig: -------------------------------------------------------------------------------- 1 | {% spaceless %} 2 | 3 | 4 | {% include "@OAuth2FrameworkServerBundle/form_post/response_header.html.twig" %} 5 | {% include "@OAuth2FrameworkServerBundle/form_post/response_body.html.twig" %} 6 | 7 | {% endspaceless %} 8 | -------------------------------------------------------------------------------- /src/ServerBundle/Resources/views/form_post/response_header.html.twig: -------------------------------------------------------------------------------- 1 | {% spaceless %} 2 |
3 |