Skip to content

Instantly share code, notes, and snippets.

@omalave
Last active July 21, 2016 19:03
Show Gist options
  • Save omalave/278d070b3efaad47e0ad to your computer and use it in GitHub Desktop.
Save omalave/278d070b3efaad47e0ad to your computer and use it in GitHub Desktop.
How to install Composer on Debian
To make Composer (globally) available on Debian:
$ sudo su
$ cd /usr/src
$ apt-get install curl php5-cli
$ curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
Verify installation:
$ composer --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment