├── .github ├── pull_request_template.md └── workflows │ ├── browser-tests.yaml │ ├── ci.yaml │ ├── cross-merge.yaml │ ├── pr-assign.yaml │ ├── pr-check.yaml │ └── release.yaml ├── .gitignore ├── .php_cs ├── COPYRIGHT ├── LICENSE ├── LICENSE-bul ├── README.md ├── behat_suites.yml ├── bootstrap.php ├── composer.json ├── features └── browser │ ├── formats.feature │ └── loginMethods.feature ├── phpunit.xml ├── src ├── bundle │ ├── Command │ │ └── AuditUserDatabaseCommand.php │ ├── Controller │ │ ├── Controller.php │ │ ├── PasswordChangeController.php │ │ ├── PasswordResetController.php │ │ ├── UserRegisterController.php │ │ └── UserSettingsController.php │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── SecurityPass.php │ │ │ └── UserSetting │ │ │ │ ├── FormMapperPass.php │ │ │ │ └── ValueDefinitionPass.php │ │ ├── Configuration │ │ │ └── Parser │ │ │ │ ├── ChangePassword.php │ │ │ │ ├── ForgotPassword.php │ │ │ │ ├── Pagination.php │ │ │ │ ├── ResetPassword.php │ │ │ │ ├── Security.php │ │ │ │ ├── UserPreferences.php │ │ │ │ ├── UserRegistration.php │ │ │ │ └── UserSettingsUpdateView.php │ │ └── EzPlatformUserExtension.php │ ├── EzPlatformUserBundle.php │ ├── Resources │ │ ├── config │ │ │ ├── ezplatform_default_settings.yaml │ │ │ ├── routing.yaml │ │ │ ├── services.yaml │ │ │ ├── services │ │ │ │ ├── controllers.yaml │ │ │ │ ├── forms.yaml │ │ │ │ ├── test │ │ │ │ │ └── feature_contexts.yaml │ │ │ │ ├── user_settings.yaml │ │ │ │ └── validators.yaml │ │ │ └── validation.yaml │ │ ├── translations │ │ │ ├── change_password.en.xliff │ │ │ ├── ezplatform_content_forms_user_registration.en.xliff │ │ │ ├── forgot_password.en.xliff │ │ │ ├── forms.en.xliff │ │ │ ├── menu.en.xliff │ │ │ ├── messages.en.xliff │ │ │ ├── pagination.en.xliff │ │ │ ├── registration.en.xliff │ │ │ ├── reset_password.en.xliff │ │ │ ├── user_change_password.en.xliff │ │ │ ├── user_settings.en.xliff │ │ │ └── validators.en.xliff │ │ └── views │ │ │ ├── change_password │ │ │ ├── index.html.twig │ │ │ └── success.html.twig │ │ │ ├── forgot_password │ │ │ ├── index.html.twig │ │ │ ├── mail │ │ │ │ └── forgot_user_password.html.twig │ │ │ ├── success.html.twig │ │ │ └── with_login.html.twig │ │ │ ├── register │ │ │ └── register_confirmation.html.twig │ │ │ ├── reset_password │ │ │ ├── index.html.twig │ │ │ ├── invalid_link.html.twig │ │ │ └── success.html.twig │ │ │ └── user_settings │ │ │ ├── list.html.twig │ │ │ └── update.html.twig │ ├── Security │ │ └── Authentication │ │ │ └── DefaultAuthenticationFailureHandler.php │ └── Type │ │ └── UserForgotPasswordReason.php └── lib │ ├── Behat │ └── Context │ │ ├── UserSettingsContext.php │ │ └── UserSetupContext.php │ ├── ConfigResolver │ ├── ConfigurableRegistrationContentTypeLoader.php │ ├── ConfigurableRegistrationGroupLoader.php │ ├── ConfigurableSudoRepositoryLoader.php │ ├── RegistrationContentTypeLoader.php │ └── RegistrationGroupLoader.php │ ├── EventListener │ ├── UserMenuListener.php │ ├── UserPasswordChangeRightSidebarListener.php │ └── ViewTemplatesListener.php │ ├── Form │ ├── ChoiceList │ │ └── Loader │ │ │ └── AvailableLocaleChoiceLoader.php │ ├── Data │ │ ├── UserPasswordChangeData.php │ │ ├── UserPasswordForgotData.php │ │ ├── UserPasswordForgotWithLoginData.php │ │ ├── UserPasswordResetData.php │ │ ├── UserRegisterData.php │ │ └── UserSettingUpdateData.php │ ├── DataMapper │ │ └── UserRegisterMapper.php │ ├── DataTransformer │ │ └── DateTimeFormatTransformer.php │ ├── Factory │ │ └── FormFactory.php │ ├── Processor │ │ └── UserRegisterFormProcessor.php │ ├── Type │ │ ├── UserPasswordChangeType.php │ │ ├── UserPasswordForgotType.php │ │ ├── UserPasswordForgotWithLoginType.php │ │ ├── UserPasswordResetType.php │ │ ├── UserRegisterType.php │ │ ├── UserSettingUpdateType.php │ │ └── UserSettings │ │ │ ├── DateTimeFormatType.php │ │ │ ├── FullDateTimeFormatType.php │ │ │ └── ShortDateTimeFormatType.php │ └── UserFormEvents.php │ ├── Pagination │ └── Pagerfanta │ │ └── UserSettingsAdapter.php │ ├── Templating │ └── Twig │ │ └── DateTimeExtension.php │ ├── UserSetting │ ├── DateTimeFormat │ │ ├── AbstractDateTimeFormatterFactory.php │ │ ├── DateTimeFormatterFactoryInterface.php │ │ ├── Formatter.php │ │ ├── FormatterInterface.php │ │ ├── FullDateFormatterFactory.php │ │ ├── FullDateTimeFormatterFactory.php │ │ ├── FullTimeFormatterFactory.php │ │ ├── ShortDateFormatterFactory.php │ │ ├── ShortDateTimeFormatterFactory.php │ │ └── ShortTimeFormatterFactory.php │ ├── FormMapperInterface.php │ ├── FormMapperRegistry.php │ ├── Setting │ │ ├── AbstractDateTimeFormat.php │ │ ├── CharacterCounter.php │ │ ├── DateTimeFormatSerializer.php │ │ ├── FullDateTimeFormat.php │ │ ├── Language.php │ │ ├── ShortDateTimeFormat.php │ │ ├── SubitemsLimit.php │ │ ├── Timezone.php │ │ └── Value │ │ │ └── DateTimeFormat.php │ ├── UserSetting.php │ ├── UserSettingArrayAccessor.php │ ├── UserSettingService.php │ ├── ValueDefinitionInterface.php │ ├── ValueDefinitionRegistry.php │ └── ValueDefinitionRegistryEntry.php │ ├── Validator │ └── Constraints │ │ ├── Password.php │ │ ├── PasswordValidator.php │ │ ├── UserPassword.php │ │ └── UserPasswordValidator.php │ └── View │ ├── ChangePassword │ ├── FormView.php │ └── SuccessView.php │ ├── ForgotPassword │ ├── FormView.php │ ├── LoginView.php │ └── SuccessView.php │ ├── Register │ ├── ConfirmView.php │ └── FormView.php │ ├── ResetPassword │ ├── FormView.php │ ├── InvalidLinkView.php │ └── SuccessView.php │ └── UserSettings │ ├── ListView.php │ ├── Matcher │ └── Identifier.php │ ├── UpdateView.php │ ├── UpdateViewBuilder.php │ └── UpdateViewProvider.php └── tests ├── bundle └── DependencyInjection │ └── Configuration │ └── Parser │ ├── ChangePasswordTest.php │ ├── ForgotPasswordTest.php │ └── ResetPasswordTest.php └── lib ├── Form └── Type │ └── ChoiceList │ └── Loader │ └── AvailableLocaleChoiceLoaderTest.php ├── UserSetting ├── UserSettingServiceTest.php └── ValueDefinitionRegistryTest.php └── Validator └── Constraint ├── PasswordTest.php ├── PasswordValidatorTest.php ├── UserPasswordTest.php └── UserPasswordValidatorTest.php /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/browser-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/.github/workflows/browser-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/cross-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/.github/workflows/cross-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/.github/workflows/pr-assign.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/.github/workflows/pr-check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /phpunit.xml 3 | /.php_cs.cache 4 | composer.lock 5 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/.php_cs -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-bul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/LICENSE-bul -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/README.md -------------------------------------------------------------------------------- /behat_suites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/behat_suites.yml -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/composer.json -------------------------------------------------------------------------------- /features/browser/formats.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/features/browser/formats.feature -------------------------------------------------------------------------------- /features/browser/loginMethods.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/features/browser/loginMethods.feature -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/bundle/Command/AuditUserDatabaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Command/AuditUserDatabaseCommand.php -------------------------------------------------------------------------------- /src/bundle/Controller/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Controller/Controller.php -------------------------------------------------------------------------------- /src/bundle/Controller/PasswordChangeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Controller/PasswordChangeController.php -------------------------------------------------------------------------------- /src/bundle/Controller/PasswordResetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Controller/PasswordResetController.php -------------------------------------------------------------------------------- /src/bundle/Controller/UserRegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Controller/UserRegisterController.php -------------------------------------------------------------------------------- /src/bundle/Controller/UserSettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Controller/UserSettingsController.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/SecurityPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Compiler/SecurityPass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/UserSetting/FormMapperPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Compiler/UserSetting/FormMapperPass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/UserSetting/ValueDefinitionPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Compiler/UserSetting/ValueDefinitionPass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/ChangePassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Configuration/Parser/ChangePassword.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/ForgotPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Configuration/Parser/ForgotPassword.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Configuration/Parser/Pagination.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Configuration/Parser/ResetPassword.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Configuration/Parser/Security.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/UserPreferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Configuration/Parser/UserPreferences.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/UserRegistration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Configuration/Parser/UserRegistration.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/UserSettingsUpdateView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/Configuration/Parser/UserSettingsUpdateView.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/EzPlatformUserExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/DependencyInjection/EzPlatformUserExtension.php -------------------------------------------------------------------------------- /src/bundle/EzPlatformUserBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/EzPlatformUserBundle.php -------------------------------------------------------------------------------- /src/bundle/Resources/config/ezplatform_default_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/ezplatform_default_settings.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/routing.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/services.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/services/controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/services/controllers.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/services/forms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/services/forms.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/services/test/feature_contexts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/services/test/feature_contexts.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/services/user_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/services/user_settings.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/services/validators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/services/validators.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/config/validation.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/translations/change_password.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/change_password.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/ezplatform_content_forms_user_registration.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/ezplatform_content_forms_user_registration.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/forgot_password.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/forgot_password.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/forms.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/forms.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/menu.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/menu.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/messages.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/messages.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/pagination.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/pagination.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/registration.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/registration.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/reset_password.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/reset_password.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/user_change_password.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/user_change_password.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/user_settings.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/user_settings.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/validators.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/translations/validators.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/views/change_password/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/change_password/index.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/change_password/success.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/change_password/success.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/forgot_password/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/forgot_password/index.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/forgot_password/mail/forgot_user_password.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/forgot_password/mail/forgot_user_password.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/forgot_password/success.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/forgot_password/success.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/forgot_password/with_login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/forgot_password/with_login.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/register/register_confirmation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/register/register_confirmation.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/reset_password/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/reset_password/index.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/reset_password/invalid_link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/reset_password/invalid_link.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/reset_password/success.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/reset_password/success.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/user_settings/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/user_settings/list.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/user_settings/update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Resources/views/user_settings/update.html.twig -------------------------------------------------------------------------------- /src/bundle/Security/Authentication/DefaultAuthenticationFailureHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Security/Authentication/DefaultAuthenticationFailureHandler.php -------------------------------------------------------------------------------- /src/bundle/Type/UserForgotPasswordReason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/bundle/Type/UserForgotPasswordReason.php -------------------------------------------------------------------------------- /src/lib/Behat/Context/UserSettingsContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Behat/Context/UserSettingsContext.php -------------------------------------------------------------------------------- /src/lib/Behat/Context/UserSetupContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Behat/Context/UserSetupContext.php -------------------------------------------------------------------------------- /src/lib/ConfigResolver/ConfigurableRegistrationContentTypeLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/ConfigResolver/ConfigurableRegistrationContentTypeLoader.php -------------------------------------------------------------------------------- /src/lib/ConfigResolver/ConfigurableRegistrationGroupLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/ConfigResolver/ConfigurableRegistrationGroupLoader.php -------------------------------------------------------------------------------- /src/lib/ConfigResolver/ConfigurableSudoRepositoryLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/ConfigResolver/ConfigurableSudoRepositoryLoader.php -------------------------------------------------------------------------------- /src/lib/ConfigResolver/RegistrationContentTypeLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/ConfigResolver/RegistrationContentTypeLoader.php -------------------------------------------------------------------------------- /src/lib/ConfigResolver/RegistrationGroupLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/ConfigResolver/RegistrationGroupLoader.php -------------------------------------------------------------------------------- /src/lib/EventListener/UserMenuListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/EventListener/UserMenuListener.php -------------------------------------------------------------------------------- /src/lib/EventListener/UserPasswordChangeRightSidebarListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/EventListener/UserPasswordChangeRightSidebarListener.php -------------------------------------------------------------------------------- /src/lib/EventListener/ViewTemplatesListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/EventListener/ViewTemplatesListener.php -------------------------------------------------------------------------------- /src/lib/Form/ChoiceList/Loader/AvailableLocaleChoiceLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/ChoiceList/Loader/AvailableLocaleChoiceLoader.php -------------------------------------------------------------------------------- /src/lib/Form/Data/UserPasswordChangeData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Data/UserPasswordChangeData.php -------------------------------------------------------------------------------- /src/lib/Form/Data/UserPasswordForgotData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Data/UserPasswordForgotData.php -------------------------------------------------------------------------------- /src/lib/Form/Data/UserPasswordForgotWithLoginData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Data/UserPasswordForgotWithLoginData.php -------------------------------------------------------------------------------- /src/lib/Form/Data/UserPasswordResetData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Data/UserPasswordResetData.php -------------------------------------------------------------------------------- /src/lib/Form/Data/UserRegisterData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Data/UserRegisterData.php -------------------------------------------------------------------------------- /src/lib/Form/Data/UserSettingUpdateData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Data/UserSettingUpdateData.php -------------------------------------------------------------------------------- /src/lib/Form/DataMapper/UserRegisterMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/DataMapper/UserRegisterMapper.php -------------------------------------------------------------------------------- /src/lib/Form/DataTransformer/DateTimeFormatTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/DataTransformer/DateTimeFormatTransformer.php -------------------------------------------------------------------------------- /src/lib/Form/Factory/FormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Factory/FormFactory.php -------------------------------------------------------------------------------- /src/lib/Form/Processor/UserRegisterFormProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Processor/UserRegisterFormProcessor.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserPasswordChangeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserPasswordChangeType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserPasswordForgotType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserPasswordForgotType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserPasswordForgotWithLoginType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserPasswordForgotWithLoginType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserPasswordResetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserPasswordResetType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserRegisterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserRegisterType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserSettingUpdateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserSettingUpdateType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserSettings/DateTimeFormatType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserSettings/DateTimeFormatType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserSettings/FullDateTimeFormatType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserSettings/FullDateTimeFormatType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/UserSettings/ShortDateTimeFormatType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/Type/UserSettings/ShortDateTimeFormatType.php -------------------------------------------------------------------------------- /src/lib/Form/UserFormEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Form/UserFormEvents.php -------------------------------------------------------------------------------- /src/lib/Pagination/Pagerfanta/UserSettingsAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Pagination/Pagerfanta/UserSettingsAdapter.php -------------------------------------------------------------------------------- /src/lib/Templating/Twig/DateTimeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Templating/Twig/DateTimeExtension.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/AbstractDateTimeFormatterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/AbstractDateTimeFormatterFactory.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/DateTimeFormatterFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/DateTimeFormatterFactoryInterface.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/Formatter.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/FormatterInterface.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/FullDateFormatterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/FullDateFormatterFactory.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/FullDateTimeFormatterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/FullDateTimeFormatterFactory.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/FullTimeFormatterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/FullTimeFormatterFactory.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/ShortDateFormatterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/ShortDateFormatterFactory.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/ShortDateTimeFormatterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/ShortDateTimeFormatterFactory.php -------------------------------------------------------------------------------- /src/lib/UserSetting/DateTimeFormat/ShortTimeFormatterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/DateTimeFormat/ShortTimeFormatterFactory.php -------------------------------------------------------------------------------- /src/lib/UserSetting/FormMapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/FormMapperInterface.php -------------------------------------------------------------------------------- /src/lib/UserSetting/FormMapperRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/FormMapperRegistry.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/AbstractDateTimeFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/AbstractDateTimeFormat.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/CharacterCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/CharacterCounter.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/DateTimeFormatSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/DateTimeFormatSerializer.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/FullDateTimeFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/FullDateTimeFormat.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/Language.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/ShortDateTimeFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/ShortDateTimeFormat.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/SubitemsLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/SubitemsLimit.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/Timezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/Timezone.php -------------------------------------------------------------------------------- /src/lib/UserSetting/Setting/Value/DateTimeFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/Setting/Value/DateTimeFormat.php -------------------------------------------------------------------------------- /src/lib/UserSetting/UserSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/UserSetting.php -------------------------------------------------------------------------------- /src/lib/UserSetting/UserSettingArrayAccessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/UserSettingArrayAccessor.php -------------------------------------------------------------------------------- /src/lib/UserSetting/UserSettingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/UserSettingService.php -------------------------------------------------------------------------------- /src/lib/UserSetting/ValueDefinitionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/ValueDefinitionInterface.php -------------------------------------------------------------------------------- /src/lib/UserSetting/ValueDefinitionRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/ValueDefinitionRegistry.php -------------------------------------------------------------------------------- /src/lib/UserSetting/ValueDefinitionRegistryEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/UserSetting/ValueDefinitionRegistryEntry.php -------------------------------------------------------------------------------- /src/lib/Validator/Constraints/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Validator/Constraints/Password.php -------------------------------------------------------------------------------- /src/lib/Validator/Constraints/PasswordValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Validator/Constraints/PasswordValidator.php -------------------------------------------------------------------------------- /src/lib/Validator/Constraints/UserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Validator/Constraints/UserPassword.php -------------------------------------------------------------------------------- /src/lib/Validator/Constraints/UserPasswordValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/Validator/Constraints/UserPasswordValidator.php -------------------------------------------------------------------------------- /src/lib/View/ChangePassword/FormView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/ChangePassword/FormView.php -------------------------------------------------------------------------------- /src/lib/View/ChangePassword/SuccessView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/ChangePassword/SuccessView.php -------------------------------------------------------------------------------- /src/lib/View/ForgotPassword/FormView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/ForgotPassword/FormView.php -------------------------------------------------------------------------------- /src/lib/View/ForgotPassword/LoginView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/ForgotPassword/LoginView.php -------------------------------------------------------------------------------- /src/lib/View/ForgotPassword/SuccessView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/ForgotPassword/SuccessView.php -------------------------------------------------------------------------------- /src/lib/View/Register/ConfirmView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/Register/ConfirmView.php -------------------------------------------------------------------------------- /src/lib/View/Register/FormView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/Register/FormView.php -------------------------------------------------------------------------------- /src/lib/View/ResetPassword/FormView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/ResetPassword/FormView.php -------------------------------------------------------------------------------- /src/lib/View/ResetPassword/InvalidLinkView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/ResetPassword/InvalidLinkView.php -------------------------------------------------------------------------------- /src/lib/View/ResetPassword/SuccessView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/ResetPassword/SuccessView.php -------------------------------------------------------------------------------- /src/lib/View/UserSettings/ListView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/UserSettings/ListView.php -------------------------------------------------------------------------------- /src/lib/View/UserSettings/Matcher/Identifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/UserSettings/Matcher/Identifier.php -------------------------------------------------------------------------------- /src/lib/View/UserSettings/UpdateView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/UserSettings/UpdateView.php -------------------------------------------------------------------------------- /src/lib/View/UserSettings/UpdateViewBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/UserSettings/UpdateViewBuilder.php -------------------------------------------------------------------------------- /src/lib/View/UserSettings/UpdateViewProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/src/lib/View/UserSettings/UpdateViewProvider.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Configuration/Parser/ChangePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/bundle/DependencyInjection/Configuration/Parser/ChangePasswordTest.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Configuration/Parser/ForgotPasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/bundle/DependencyInjection/Configuration/Parser/ForgotPasswordTest.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Configuration/Parser/ResetPasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/bundle/DependencyInjection/Configuration/Parser/ResetPasswordTest.php -------------------------------------------------------------------------------- /tests/lib/Form/Type/ChoiceList/Loader/AvailableLocaleChoiceLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/lib/Form/Type/ChoiceList/Loader/AvailableLocaleChoiceLoaderTest.php -------------------------------------------------------------------------------- /tests/lib/UserSetting/UserSettingServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/lib/UserSetting/UserSettingServiceTest.php -------------------------------------------------------------------------------- /tests/lib/UserSetting/ValueDefinitionRegistryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/lib/UserSetting/ValueDefinitionRegistryTest.php -------------------------------------------------------------------------------- /tests/lib/Validator/Constraint/PasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/lib/Validator/Constraint/PasswordTest.php -------------------------------------------------------------------------------- /tests/lib/Validator/Constraint/PasswordValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/lib/Validator/Constraint/PasswordValidatorTest.php -------------------------------------------------------------------------------- /tests/lib/Validator/Constraint/UserPasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/lib/Validator/Constraint/UserPasswordTest.php -------------------------------------------------------------------------------- /tests/lib/Validator/Constraint/UserPasswordValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-user/HEAD/tests/lib/Validator/Constraint/UserPasswordValidatorTest.php --------------------------------------------------------------------------------