I have an old project which I want to add user management to.
Symfony has the FOSUserBundle which makes user straightforward.
Is there a way to integrate Symfony in the old project so that I can benefit from the UserBundle?
I have an old project which I want to add user management to.
Symfony has the FOSUserBundle which makes user straightforward.
Is there a way to integrate Symfony in the old project so that I can benefit from the UserBundle?
This question is extremely hard to answer without specific details of the existing project. We have no idea how the project was constructed. Is it all spaghetti code? Is it MVC based? Is it using an existing framework?
If you're asking if somehow Symfony2 and FOSUserBundle can somehow be shoehorned into your project - I doubt it. A number of Symfony2's features can be used as stand alone libraries, but bundles, and therefore FOSUserBundle, are tightly coupled with Symfony2's MVC stack.
You need to ask yourself if you're willing to rewrite your project using Symfony2. If you're not, then you need to find another solution for user management that will work with what you've already got setup.