4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Composerをインストールする

Last updated at Posted at 2020-03-28

composerをダウンロードします

https://getcomposer.org/composer-stable.phar

特定のバージョンをダウンロードしたい場合は下記からダウンロードします
https://getcomposer.org/download#composer-history-caption

composerの実行ファイル作成

ダウンロードしたファイルが存在するフォルダ内に
Windowsの場合composer.batを作成する
Linuxの場合composerを作成する

Windows
composer.bat

@php "%~dp0composer.phar" %*

Linux
composer

#!/bin/bash

php $(cd $(dirname $0); pwd)/composer-stable.phar "$@"

ファイル構成は下記となります

Windows

`-- composer
    |-- composer.bat
    `-- composer.phar

Linux

`-- composer
    |-- composer
    `-- composer-stable.phar

環境変数修正

PATHという名前の環境変数の値にダウンロードしてきたcomposer(composer.pharとかcomposer-stable.phar)の格納フォルダのパスを追記する

Linuxの方は、再ログインするかsourceコマンドで編集後の環境変数を有効にしてください

確認

コマンドラインでcomposer -Vと入力する

Composer version x.x.x xxxx-xx-xx xx:xx:xx
と表示されることを確認する

完了

4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?