You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package only receives minimal maintenance to allow existing projects to upgrade. Existing projects are expected to plan a migration away from this bundle.
24
+
25
+
**New projects should not use this bundle.** It is actually much easier to implement the User entity in the project (allowing to fit exactly the need of the project). Regarding the extra features of the bundle:
26
+
27
+
- the EntityUserProvider of Symfony already provides the UserProvider when using the Doctrine ORM (and other object managers integrated with Symfony have an equivalent feature)
28
+
- change password is easy to implement in the project. That's a simple form relying on core Symfony features (the validator for the current password is in core since years)
29
+
- email verification is provided by https://github.com/SymfonyCasts/verify-email-bundle
30
+
- password reset is provided by https://github.com/SymfonyCasts/reset-password-bundle
31
+
- registration is easier to implement in the project directly to fit the need of the project, especially when the User entity is in the project. symfony/form already provides everything you need
32
+
- the ProfileController showing a profile page for the user is better done in projects needing it, as the content is likely not enough anyway
0 commit comments