Skip to content

Instantly share code, notes, and snippets.

@vojtech-dobes
Created September 21, 2012 12:53
Show Gist options
  • Save vojtech-dobes/3761294 to your computer and use it in GitHub Desktop.
Save vojtech-dobes/3761294 to your computer and use it in GitHub Desktop.
Composer via Ant
<exec executable="bash" failonerror="true">
<arg value="-c" />
<arg value="curl -s https://getcomposer.org/installer | php" />
</exec>
<exec executable="php" failonerror="true">
<arg value="composer.phar" />
<arg value="install" />
</exec>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment