Force composer to load git repo instead of zip
I have a problem with the composer.
"require": {
"php": ">=5.3.2",
"kriswallsmith/buzz": "0.7"
},
Repo https://github.com/kriswallsmith/Buzz/tree/v0.7
Unfortunately, github returns 502 for this request https://github.com/kriswallsmith/Buzz/zipball/v0.7
Request URL: https://nodeload.github.com/kriswallsmith/Buzz/zipball/v0.7
Status Code: 502 Bad Gateway
Fortunately, the git clone works;)
Is it possible to say / ask the composer to a git clone user instead of downloading a zipball for this dependency?
+5
3 answers