I am all about the best practice of symfony 2 and I would like to integrate a php library into the project. Library is a non bundle, a simple php class with some methods.
My question just follows the following, which DOES NOT have an accepted answer. Anyway from what I read here I decided to autoload the class, but have no idea where should I locate the php file.
Maybe src/MyBundle/DependencyInjection/
? I really doubt it since library has no dependency of other services I have.
Should I create a directory like src/MyBundle/Services/
or src/MyBundle/Libraries/
?
What is the best practice here?