I've got a GitHub repository that has the following directory structure:
config app vendor - Framework - Component1 - Component2 - Component3 - Component4 So, I have a framework and want to make all its components to be install-able via composer (just like Symfony does), since those components are completely decoupled from each other and can be used as standalone libraries as well. The framework itself follows PSR-0.
What I'm falling to do is to submit each component as a package on https://packagist.org/packages/submit Seems like, that packagist wants only root of a repository and can't be used to submit nested folders.
Also, I didn't note any stuff about achieving what I want in official docs so far. Is there any way to do it? If not, what to re-organize to make it possbile?