├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── composer.json ├── phpunit.xml.dist ├── psalm.xml ├── src ├── Bundle │ ├── DependencyInjection │ │ └── Compiler │ │ │ └── UserCheckerDecoratorPass.php │ └── SyliusLabsPolyfillSymfonySecurityBundle.php └── Core │ ├── Encoder │ └── EncoderAwareInterface.php │ ├── Exception │ └── UserNotFoundException.php │ └── User │ ├── AdvancedUserInterface.php │ ├── UserChecker.php │ └── UserInterface.php └── tests └── Core ├── Encoder └── EncoderAwareInterfaceTest.php ├── Exception └── UserNotFoundExceptionTest.php └── User ├── AdvancedUserInterfaceTest.php └── UserCheckerTest.php /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Bundle/DependencyInjection/Compiler/UserCheckerDecoratorPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/src/Bundle/DependencyInjection/Compiler/UserCheckerDecoratorPass.php -------------------------------------------------------------------------------- /src/Bundle/SyliusLabsPolyfillSymfonySecurityBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/src/Bundle/SyliusLabsPolyfillSymfonySecurityBundle.php -------------------------------------------------------------------------------- /src/Core/Encoder/EncoderAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/src/Core/Encoder/EncoderAwareInterface.php -------------------------------------------------------------------------------- /src/Core/Exception/UserNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/src/Core/Exception/UserNotFoundException.php -------------------------------------------------------------------------------- /src/Core/User/AdvancedUserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/src/Core/User/AdvancedUserInterface.php -------------------------------------------------------------------------------- /src/Core/User/UserChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/src/Core/User/UserChecker.php -------------------------------------------------------------------------------- /src/Core/User/UserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/src/Core/User/UserInterface.php -------------------------------------------------------------------------------- /tests/Core/Encoder/EncoderAwareInterfaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/tests/Core/Encoder/EncoderAwareInterfaceTest.php -------------------------------------------------------------------------------- /tests/Core/Exception/UserNotFoundExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/tests/Core/Exception/UserNotFoundExceptionTest.php -------------------------------------------------------------------------------- /tests/Core/User/AdvancedUserInterfaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/tests/Core/User/AdvancedUserInterfaceTest.php -------------------------------------------------------------------------------- /tests/Core/User/UserCheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyliusLabs/PolyfillSymfonySecurity/HEAD/tests/Core/User/UserCheckerTest.php --------------------------------------------------------------------------------