LoginSignup
15
17

More than 5 years have passed since last update.

Amazon Linux上でcomposerをインストールしてみる

Last updated at Posted at 2017-01-12

動作環境

Amazon Linux AMI release 2016.09

1.下記のコマンドを実行

curl -sS https://getcomposer.org/installer | php

[ec2-user@localhost ~]$ curl -sS https://getcomposer.org/installer | php
All settings correct for using Composer
Downloading 1.2.4...

Composer successfully installed to: /home/ec2-user/composer.phar
Use it: php composer.phar

2.下記のコマンドを実行

sudo mv composer.phar /usr/local/bin/composer

[ec2-user@localhost ~]$ sudo mv composer.phar /usr/local/bin/composer

3.下記のコマンドを実行

which composer

[ec2-user@localhost ~]$ which composer
/usr/local/bin/composer

下記のサイトを参考にさせていただきました。
ありがとうございました!

参考
https://www.crunchtimer.jp/blog/technology/php/4993/

15
17
0

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
15
17