I have a forked symfony repository on GitHub and I moved the code to branch 2.4 . How can I get Composer to use this particular branch?
composer.json:
"require" : { ... "symfony/symfony" : "dev-2.4" }, "repositories" : { "type" : "vcs", "url" : "https://github.com/tamirvs/symfony" }
But I get The requested package symfony/symfony dev-2.4 could not be found . I also tried 2.4-dev and 2.4 , but getting the same error.
All the information that I found on the Internet led me to the fact that I already tried .. any ideas?
Please note that when installing the version on 2.4. * The repository is pulled, but without my commits.
tamir source share