I am using svn for hosting my projects on unfuddle.com. All of them share some of my bundles that I would like to keep private.
Example:
I created d:bundles/ImageBundle
folder and copied the code I already have. Structure is like any other symfony bundle, I have folders Controller, Entity etc inside it. Is it good way of doing it?
What should ImageBundle/composer.json
have? When I try to install that bundle, I get this error:
Your requirements could not be resolved to an installable set of packages.
Problem 1 - The requested package wjb/image-bundle dev could not be found.
Potential causes: - A typo in the package name - The package is not available in a stable-enough version according to your minimum-stability....
Even when my programs' composer.json file has "wjb/image-bundle": "*"
I get it.
My main composer.json also has this:
"repositories": [
{
"type": "vcs",
"url": "http://mysvnrepository" ,
"trunk-path": "ImageBundle",
"branches-path":false,
"tags-path": false
}
]