LoginSignup
31
25

More than 3 years have passed since last update.

[mac]php composerのインストール方法

Last updated at Posted at 2018-04-30

composerをサクッとインストールしていきます!

composerをインストールする

#composerをインストール
curl -sS https://getcomposer.org/installer | php

#/usr/local/bin/composerに移動させる
sudo mv composer.phar /usr/local/bin/composer

#composerがインストールされているか確認
composer --version

#別の方法で確認
which composer

じゃあcomposer installやってみよう。

composer install

できた。

終わり!

31
25
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
31
25