├── Authentication ├── AuthenticationTrustResolver.php ├── AuthenticationTrustResolverInterface.php ├── RememberMe │ ├── CacheTokenVerifier.php │ ├── InMemoryTokenProvider.php │ ├── PersistentToken.php │ ├── PersistentTokenInterface.php │ ├── TokenProviderInterface.php │ └── TokenVerifierInterface.php └── Token │ ├── AbstractToken.php │ ├── NullToken.php │ ├── OfflineTokenInterface.php │ ├── PreAuthenticatedToken.php │ ├── RememberMeToken.php │ ├── Storage │ ├── TokenStorage.php │ ├── TokenStorageInterface.php │ └── UsageTrackingTokenStorage.php │ ├── SwitchUserToken.php │ ├── TokenInterface.php │ └── UsernamePasswordToken.php ├── AuthenticationEvents.php ├── Authorization ├── AccessDecision.php ├── AccessDecisionManager.php ├── AccessDecisionManagerInterface.php ├── AuthorizationChecker.php ├── AuthorizationCheckerInterface.php ├── ExpressionLanguage.php ├── ExpressionLanguageProvider.php ├── Strategy │ ├── AccessDecisionStrategyInterface.php │ ├── AffirmativeStrategy.php │ ├── ConsensusStrategy.php │ ├── PriorityStrategy.php │ └── UnanimousStrategy.php ├── TraceableAccessDecisionManager.php ├── UserAuthorizationCheckerInterface.php └── Voter │ ├── AuthenticatedVoter.php │ ├── CacheableVoterInterface.php │ ├── ClosureVoter.php │ ├── ExpressionVoter.php │ ├── RoleHierarchyVoter.php │ ├── RoleVoter.php │ ├── TraceableVoter.php │ ├── Vote.php │ ├── Voter.php │ └── VoterInterface.php ├── CHANGELOG.md ├── Event ├── AuthenticationEvent.php ├── AuthenticationSuccessEvent.php └── VoteEvent.php ├── Exception ├── AccessDeniedException.php ├── AccountExpiredException.php ├── AccountStatusException.php ├── AuthenticationCredentialsNotFoundException.php ├── AuthenticationException.php ├── AuthenticationExpiredException.php ├── AuthenticationServiceException.php ├── BadCredentialsException.php ├── CookieTheftException.php ├── CredentialsExpiredException.php ├── CustomUserMessageAccountStatusException.php ├── CustomUserMessageAuthenticationException.php ├── DisabledException.php ├── ExceptionInterface.php ├── InsufficientAuthenticationException.php ├── InvalidArgumentException.php ├── InvalidCsrfTokenException.php ├── LazyResponseException.php ├── LockedException.php ├── LogicException.php ├── LogoutException.php ├── ProviderNotFoundException.php ├── RuntimeException.php ├── SessionUnavailableException.php ├── TokenNotFoundException.php ├── TooManyLoginAttemptsAuthenticationException.php ├── UnsupportedUserException.php └── UserNotFoundException.php ├── LICENSE ├── README.md ├── Resources └── translations │ ├── security.af.xlf │ ├── security.ar.xlf │ ├── security.az.xlf │ ├── security.be.xlf │ ├── security.bg.xlf │ ├── security.bs.xlf │ ├── security.ca.xlf │ ├── security.cs.xlf │ ├── security.cy.xlf │ ├── security.da.xlf │ ├── security.de.xlf │ ├── security.el.xlf │ ├── security.en.xlf │ ├── security.es.xlf │ ├── security.et.xlf │ ├── security.eu.xlf │ ├── security.fa.xlf │ ├── security.fi.xlf │ ├── security.fr.xlf │ ├── security.gl.xlf │ ├── security.he.xlf │ ├── security.hr.xlf │ ├── security.hu.xlf │ ├── security.hy.xlf │ ├── security.id.xlf │ ├── security.it.xlf │ ├── security.ja.xlf │ ├── security.lb.xlf │ ├── security.lt.xlf │ ├── security.lv.xlf │ ├── security.mk.xlf │ ├── security.mn.xlf │ ├── security.my.xlf │ ├── security.nb.xlf │ ├── security.nl.xlf │ ├── security.nn.xlf │ ├── security.no.xlf │ ├── security.pl.xlf │ ├── security.pt.xlf │ ├── security.pt_BR.xlf │ ├── security.ro.xlf │ ├── security.ru.xlf │ ├── security.sk.xlf │ ├── security.sl.xlf │ ├── security.sq.xlf │ ├── security.sr_Cyrl.xlf │ ├── security.sr_Latn.xlf │ ├── security.sv.xlf │ ├── security.th.xlf │ ├── security.tl.xlf │ ├── security.tr.xlf │ ├── security.uk.xlf │ ├── security.ur.xlf │ ├── security.uz.xlf │ ├── security.vi.xlf │ ├── security.zh_CN.xlf │ └── security.zh_TW.xlf ├── Role ├── Role.php ├── RoleHierarchy.php ├── RoleHierarchyInterface.php └── SwitchUserRole.php ├── Signature ├── Exception │ ├── ExpiredSignatureException.php │ └── InvalidSignatureException.php ├── ExpiredSignatureStorage.php └── SignatureHasher.php ├── Test └── AccessDecisionStrategyTestCase.php ├── User ├── AttributesBasedUserProviderInterface.php ├── ChainUserChecker.php ├── ChainUserProvider.php ├── EquatableInterface.php ├── InMemoryUser.php ├── InMemoryUserChecker.php ├── InMemoryUserProvider.php ├── LegacyPasswordAuthenticatedUserInterface.php ├── MissingUserProvider.php ├── OAuth2User.php ├── OidcUser.php ├── PasswordAuthenticatedUserInterface.php ├── PasswordUpgraderInterface.php ├── UserCheckerInterface.php ├── UserInterface.php └── UserProviderInterface.php ├── Validator └── Constraints │ ├── UserPassword.php │ └── UserPasswordValidator.php └── composer.json /Authentication/AuthenticationTrustResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/AuthenticationTrustResolver.php -------------------------------------------------------------------------------- /Authentication/AuthenticationTrustResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/AuthenticationTrustResolverInterface.php -------------------------------------------------------------------------------- /Authentication/RememberMe/CacheTokenVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/RememberMe/CacheTokenVerifier.php -------------------------------------------------------------------------------- /Authentication/RememberMe/InMemoryTokenProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/RememberMe/InMemoryTokenProvider.php -------------------------------------------------------------------------------- /Authentication/RememberMe/PersistentToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/RememberMe/PersistentToken.php -------------------------------------------------------------------------------- /Authentication/RememberMe/PersistentTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/RememberMe/PersistentTokenInterface.php -------------------------------------------------------------------------------- /Authentication/RememberMe/TokenProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/RememberMe/TokenProviderInterface.php -------------------------------------------------------------------------------- /Authentication/RememberMe/TokenVerifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/RememberMe/TokenVerifierInterface.php -------------------------------------------------------------------------------- /Authentication/Token/AbstractToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/AbstractToken.php -------------------------------------------------------------------------------- /Authentication/Token/NullToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/NullToken.php -------------------------------------------------------------------------------- /Authentication/Token/OfflineTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/OfflineTokenInterface.php -------------------------------------------------------------------------------- /Authentication/Token/PreAuthenticatedToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/PreAuthenticatedToken.php -------------------------------------------------------------------------------- /Authentication/Token/RememberMeToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/RememberMeToken.php -------------------------------------------------------------------------------- /Authentication/Token/Storage/TokenStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/Storage/TokenStorage.php -------------------------------------------------------------------------------- /Authentication/Token/Storage/TokenStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/Storage/TokenStorageInterface.php -------------------------------------------------------------------------------- /Authentication/Token/Storage/UsageTrackingTokenStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/Storage/UsageTrackingTokenStorage.php -------------------------------------------------------------------------------- /Authentication/Token/SwitchUserToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/SwitchUserToken.php -------------------------------------------------------------------------------- /Authentication/Token/TokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/TokenInterface.php -------------------------------------------------------------------------------- /Authentication/Token/UsernamePasswordToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authentication/Token/UsernamePasswordToken.php -------------------------------------------------------------------------------- /AuthenticationEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/AuthenticationEvents.php -------------------------------------------------------------------------------- /Authorization/AccessDecision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/AccessDecision.php -------------------------------------------------------------------------------- /Authorization/AccessDecisionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/AccessDecisionManager.php -------------------------------------------------------------------------------- /Authorization/AccessDecisionManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/AccessDecisionManagerInterface.php -------------------------------------------------------------------------------- /Authorization/AuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/AuthorizationChecker.php -------------------------------------------------------------------------------- /Authorization/AuthorizationCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/AuthorizationCheckerInterface.php -------------------------------------------------------------------------------- /Authorization/ExpressionLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/ExpressionLanguage.php -------------------------------------------------------------------------------- /Authorization/ExpressionLanguageProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/ExpressionLanguageProvider.php -------------------------------------------------------------------------------- /Authorization/Strategy/AccessDecisionStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Strategy/AccessDecisionStrategyInterface.php -------------------------------------------------------------------------------- /Authorization/Strategy/AffirmativeStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Strategy/AffirmativeStrategy.php -------------------------------------------------------------------------------- /Authorization/Strategy/ConsensusStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Strategy/ConsensusStrategy.php -------------------------------------------------------------------------------- /Authorization/Strategy/PriorityStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Strategy/PriorityStrategy.php -------------------------------------------------------------------------------- /Authorization/Strategy/UnanimousStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Strategy/UnanimousStrategy.php -------------------------------------------------------------------------------- /Authorization/TraceableAccessDecisionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/TraceableAccessDecisionManager.php -------------------------------------------------------------------------------- /Authorization/UserAuthorizationCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/UserAuthorizationCheckerInterface.php -------------------------------------------------------------------------------- /Authorization/Voter/AuthenticatedVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/AuthenticatedVoter.php -------------------------------------------------------------------------------- /Authorization/Voter/CacheableVoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/CacheableVoterInterface.php -------------------------------------------------------------------------------- /Authorization/Voter/ClosureVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/ClosureVoter.php -------------------------------------------------------------------------------- /Authorization/Voter/ExpressionVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/ExpressionVoter.php -------------------------------------------------------------------------------- /Authorization/Voter/RoleHierarchyVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/RoleHierarchyVoter.php -------------------------------------------------------------------------------- /Authorization/Voter/RoleVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/RoleVoter.php -------------------------------------------------------------------------------- /Authorization/Voter/TraceableVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/TraceableVoter.php -------------------------------------------------------------------------------- /Authorization/Voter/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/Vote.php -------------------------------------------------------------------------------- /Authorization/Voter/Voter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/Voter.php -------------------------------------------------------------------------------- /Authorization/Voter/VoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Authorization/Voter/VoterInterface.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Event/AuthenticationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Event/AuthenticationEvent.php -------------------------------------------------------------------------------- /Event/AuthenticationSuccessEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Event/AuthenticationSuccessEvent.php -------------------------------------------------------------------------------- /Event/VoteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Event/VoteEvent.php -------------------------------------------------------------------------------- /Exception/AccessDeniedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/AccessDeniedException.php -------------------------------------------------------------------------------- /Exception/AccountExpiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/AccountExpiredException.php -------------------------------------------------------------------------------- /Exception/AccountStatusException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/AccountStatusException.php -------------------------------------------------------------------------------- /Exception/AuthenticationCredentialsNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/AuthenticationCredentialsNotFoundException.php -------------------------------------------------------------------------------- /Exception/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/AuthenticationException.php -------------------------------------------------------------------------------- /Exception/AuthenticationExpiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/AuthenticationExpiredException.php -------------------------------------------------------------------------------- /Exception/AuthenticationServiceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/AuthenticationServiceException.php -------------------------------------------------------------------------------- /Exception/BadCredentialsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/BadCredentialsException.php -------------------------------------------------------------------------------- /Exception/CookieTheftException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/CookieTheftException.php -------------------------------------------------------------------------------- /Exception/CredentialsExpiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/CredentialsExpiredException.php -------------------------------------------------------------------------------- /Exception/CustomUserMessageAccountStatusException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/CustomUserMessageAccountStatusException.php -------------------------------------------------------------------------------- /Exception/CustomUserMessageAuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/CustomUserMessageAuthenticationException.php -------------------------------------------------------------------------------- /Exception/DisabledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/DisabledException.php -------------------------------------------------------------------------------- /Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /Exception/InsufficientAuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/InsufficientAuthenticationException.php -------------------------------------------------------------------------------- /Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /Exception/InvalidCsrfTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/InvalidCsrfTokenException.php -------------------------------------------------------------------------------- /Exception/LazyResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/LazyResponseException.php -------------------------------------------------------------------------------- /Exception/LockedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/LockedException.php -------------------------------------------------------------------------------- /Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/LogicException.php -------------------------------------------------------------------------------- /Exception/LogoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/LogoutException.php -------------------------------------------------------------------------------- /Exception/ProviderNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/ProviderNotFoundException.php -------------------------------------------------------------------------------- /Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/RuntimeException.php -------------------------------------------------------------------------------- /Exception/SessionUnavailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/SessionUnavailableException.php -------------------------------------------------------------------------------- /Exception/TokenNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/TokenNotFoundException.php -------------------------------------------------------------------------------- /Exception/TooManyLoginAttemptsAuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/TooManyLoginAttemptsAuthenticationException.php -------------------------------------------------------------------------------- /Exception/UnsupportedUserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/UnsupportedUserException.php -------------------------------------------------------------------------------- /Exception/UserNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Exception/UserNotFoundException.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/README.md -------------------------------------------------------------------------------- /Resources/translations/security.af.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.af.xlf -------------------------------------------------------------------------------- /Resources/translations/security.ar.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.ar.xlf -------------------------------------------------------------------------------- /Resources/translations/security.az.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.az.xlf -------------------------------------------------------------------------------- /Resources/translations/security.be.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.be.xlf -------------------------------------------------------------------------------- /Resources/translations/security.bg.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.bg.xlf -------------------------------------------------------------------------------- /Resources/translations/security.bs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.bs.xlf -------------------------------------------------------------------------------- /Resources/translations/security.ca.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.ca.xlf -------------------------------------------------------------------------------- /Resources/translations/security.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.cs.xlf -------------------------------------------------------------------------------- /Resources/translations/security.cy.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.cy.xlf -------------------------------------------------------------------------------- /Resources/translations/security.da.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.da.xlf -------------------------------------------------------------------------------- /Resources/translations/security.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.de.xlf -------------------------------------------------------------------------------- /Resources/translations/security.el.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.el.xlf -------------------------------------------------------------------------------- /Resources/translations/security.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.en.xlf -------------------------------------------------------------------------------- /Resources/translations/security.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.es.xlf -------------------------------------------------------------------------------- /Resources/translations/security.et.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.et.xlf -------------------------------------------------------------------------------- /Resources/translations/security.eu.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.eu.xlf -------------------------------------------------------------------------------- /Resources/translations/security.fa.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.fa.xlf -------------------------------------------------------------------------------- /Resources/translations/security.fi.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.fi.xlf -------------------------------------------------------------------------------- /Resources/translations/security.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.fr.xlf -------------------------------------------------------------------------------- /Resources/translations/security.gl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.gl.xlf -------------------------------------------------------------------------------- /Resources/translations/security.he.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.he.xlf -------------------------------------------------------------------------------- /Resources/translations/security.hr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.hr.xlf -------------------------------------------------------------------------------- /Resources/translations/security.hu.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.hu.xlf -------------------------------------------------------------------------------- /Resources/translations/security.hy.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.hy.xlf -------------------------------------------------------------------------------- /Resources/translations/security.id.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.id.xlf -------------------------------------------------------------------------------- /Resources/translations/security.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.it.xlf -------------------------------------------------------------------------------- /Resources/translations/security.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.ja.xlf -------------------------------------------------------------------------------- /Resources/translations/security.lb.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.lb.xlf -------------------------------------------------------------------------------- /Resources/translations/security.lt.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.lt.xlf -------------------------------------------------------------------------------- /Resources/translations/security.lv.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.lv.xlf -------------------------------------------------------------------------------- /Resources/translations/security.mk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.mk.xlf -------------------------------------------------------------------------------- /Resources/translations/security.mn.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.mn.xlf -------------------------------------------------------------------------------- /Resources/translations/security.my.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.my.xlf -------------------------------------------------------------------------------- /Resources/translations/security.nb.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.nb.xlf -------------------------------------------------------------------------------- /Resources/translations/security.nl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.nl.xlf -------------------------------------------------------------------------------- /Resources/translations/security.nn.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.nn.xlf -------------------------------------------------------------------------------- /Resources/translations/security.no.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.no.xlf -------------------------------------------------------------------------------- /Resources/translations/security.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.pl.xlf -------------------------------------------------------------------------------- /Resources/translations/security.pt.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.pt.xlf -------------------------------------------------------------------------------- /Resources/translations/security.pt_BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.pt_BR.xlf -------------------------------------------------------------------------------- /Resources/translations/security.ro.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.ro.xlf -------------------------------------------------------------------------------- /Resources/translations/security.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.ru.xlf -------------------------------------------------------------------------------- /Resources/translations/security.sk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.sk.xlf -------------------------------------------------------------------------------- /Resources/translations/security.sl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.sl.xlf -------------------------------------------------------------------------------- /Resources/translations/security.sq.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.sq.xlf -------------------------------------------------------------------------------- /Resources/translations/security.sr_Cyrl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.sr_Cyrl.xlf -------------------------------------------------------------------------------- /Resources/translations/security.sr_Latn.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.sr_Latn.xlf -------------------------------------------------------------------------------- /Resources/translations/security.sv.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.sv.xlf -------------------------------------------------------------------------------- /Resources/translations/security.th.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.th.xlf -------------------------------------------------------------------------------- /Resources/translations/security.tl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.tl.xlf -------------------------------------------------------------------------------- /Resources/translations/security.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.tr.xlf -------------------------------------------------------------------------------- /Resources/translations/security.uk.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.uk.xlf -------------------------------------------------------------------------------- /Resources/translations/security.ur.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.ur.xlf -------------------------------------------------------------------------------- /Resources/translations/security.uz.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.uz.xlf -------------------------------------------------------------------------------- /Resources/translations/security.vi.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.vi.xlf -------------------------------------------------------------------------------- /Resources/translations/security.zh_CN.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.zh_CN.xlf -------------------------------------------------------------------------------- /Resources/translations/security.zh_TW.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Resources/translations/security.zh_TW.xlf -------------------------------------------------------------------------------- /Role/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Role/Role.php -------------------------------------------------------------------------------- /Role/RoleHierarchy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Role/RoleHierarchy.php -------------------------------------------------------------------------------- /Role/RoleHierarchyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Role/RoleHierarchyInterface.php -------------------------------------------------------------------------------- /Role/SwitchUserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Role/SwitchUserRole.php -------------------------------------------------------------------------------- /Signature/Exception/ExpiredSignatureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Signature/Exception/ExpiredSignatureException.php -------------------------------------------------------------------------------- /Signature/Exception/InvalidSignatureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Signature/Exception/InvalidSignatureException.php -------------------------------------------------------------------------------- /Signature/ExpiredSignatureStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Signature/ExpiredSignatureStorage.php -------------------------------------------------------------------------------- /Signature/SignatureHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Signature/SignatureHasher.php -------------------------------------------------------------------------------- /Test/AccessDecisionStrategyTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Test/AccessDecisionStrategyTestCase.php -------------------------------------------------------------------------------- /User/AttributesBasedUserProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/AttributesBasedUserProviderInterface.php -------------------------------------------------------------------------------- /User/ChainUserChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/ChainUserChecker.php -------------------------------------------------------------------------------- /User/ChainUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/ChainUserProvider.php -------------------------------------------------------------------------------- /User/EquatableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/EquatableInterface.php -------------------------------------------------------------------------------- /User/InMemoryUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/InMemoryUser.php -------------------------------------------------------------------------------- /User/InMemoryUserChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/InMemoryUserChecker.php -------------------------------------------------------------------------------- /User/InMemoryUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/InMemoryUserProvider.php -------------------------------------------------------------------------------- /User/LegacyPasswordAuthenticatedUserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/LegacyPasswordAuthenticatedUserInterface.php -------------------------------------------------------------------------------- /User/MissingUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/MissingUserProvider.php -------------------------------------------------------------------------------- /User/OAuth2User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/OAuth2User.php -------------------------------------------------------------------------------- /User/OidcUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/OidcUser.php -------------------------------------------------------------------------------- /User/PasswordAuthenticatedUserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/PasswordAuthenticatedUserInterface.php -------------------------------------------------------------------------------- /User/PasswordUpgraderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/PasswordUpgraderInterface.php -------------------------------------------------------------------------------- /User/UserCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/UserCheckerInterface.php -------------------------------------------------------------------------------- /User/UserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/UserInterface.php -------------------------------------------------------------------------------- /User/UserProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/User/UserProviderInterface.php -------------------------------------------------------------------------------- /Validator/Constraints/UserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Validator/Constraints/UserPassword.php -------------------------------------------------------------------------------- /Validator/Constraints/UserPasswordValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/Validator/Constraints/UserPasswordValidator.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/security-core/HEAD/composer.json --------------------------------------------------------------------------------