I\'m using Capifony to deploy my Symfony2 application, but as of today it can\'t download composer - jenkins output:
[32m--> Downloading Composer[0m
* executi
Just update capifony to version 2.8.4.
A new version of Capifony, version 2.8.5, has been released a couple of hours ago, which fixes this issue.
Updating to 2.8.5 should solve your problems with the Composer download.
There doesn't seem to be an option to set the url, but you can add your own task. To circumvent capifony downloading from the wrong url I added:
task :download_composer do
run "cd " + release_path + " && curl -s https://getcomposer.org/installer | php"
end
before "symfony:composer:update", "download_composer"
before "symfony:composer:install", "download_composer"
This works because capifony checks if composer.phar is already present, if it is it'll warn you but just continue anyway