symfony official documentation lacks good info about developing sharable bundles and I couldn't find any information on the Internet either. Here are my questions:
- Currently I've created my bundle with SensioGeneratorBundle and it lives in /src/, other third party bundles installed with composer live in /vendor/, how can I develop and use my bundle at the same time? I don't want to do git push and pulls on every update. Should I create symlink from /vendor/ to my bundle or something? I've tried this, but the autoloder doesn't work and AppKernel.php can't find my bundle?
- I want to use third party library (not symfony bundle) in my symfony bundle, how can I do this? I've tried to add /vendor/ folder inside my bundle and install libraries there, but the autoloader can't find them.
Thanks.