I have framework wich uses plugins as subdirectories in plugin/
directory. Plugins are git submodules and it works just fine. But some plugins require 3rd party libraries and I want to use Composer ti install them. Also there are dependencies between plugins which could be handled by Composer too.
I tried to use composer, but it will install everything into vendor/
directory, which is wrong because plugins must go into plugin/
directory. There is also core of the framework in core/
and application specific files in app/
directory.
What is the best way to use Composer in this scenario?