Changes

Jump to navigation Jump to search
992 bytes added ,  19:33, 30 March 2015
Created page with "Composer is a dependency manager that makes it easier to distribute PHP code that relies on other code. Installing it on your own host would look something like this <so..."
Composer is a [[dependency manager]] that makes it easier to distribute PHP code that relies on other code.

Installing it on your own host would look something like this

<source lang="bash">
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
echo 'export PATH="$HOME/.composer/vendor/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
# now you can use it to do things like install the latest version of Drush
composer global require drush/drush:dev-master
</source>

while installing it on a shared host like WebFaction would be slightly modified

<source lang="bash">
ln -s `which php54` ~/bin/php
curl -sS https://getcomposer.org/installer | php54
mv composer.phar ~/bin/composer
echo -e '\n# Composer\nalias composer="php54 $HOME/composer.phar"' >> ~/.bash_profile
source ~/.bash_profile
which composer
# now you can use it to do things like install the latest version of Drush
composer global require drush/drush:dev-master
drush --version
</source>
4,558

edits

Navigation menu