0
0

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.

Laravel導入(macOS)

Last updated at Posted at 2020-07-19

Laravelサイト

Laravelの情報は公式サイトをチェック

Laravelサイト
https://laravel.com/

日本語サイト
http://laravel.jp/

Laravelのソフトウェアは、公式サイトからダウンロードしません

  • PHPを先にインストールする必要があります
  • ターミナルにて、下記を実行
ターミナル
$ brew install php@7.2
  • laravel6を使用するには、PHP 7.2以降を使用すること

①Composer

Composerは、PHPのパッケージ管理プログラムです。
Composerを使用して、Laravelをインストールする。

下記からアクセス
https://getcomposer.org/

1. トップページの「Download」をクリック
Image from Gyazo

2.「Download」アクセス後、「Manual Download」の最新バージョンをダウンロード(ここでは「1.10.9」をダウンロードする)
Image from Gyazo

3. ダウンロード完了後、ターミナルにて下記コマンド入力

ターミナル
$ cd ~/Download/
# ダウンロードフォルダに移動

$ sudo mv composer.phar /usr/local/bin/composer
# composer.pharを/usr/local/bin/内にcomposerというファイル名で移動する

$ chmod a+x /usr/local/bin/composer
# 配置したcomposerのパーミッション(アクセス権)を変更する

$ composer -V
# composerのバージョンが表示されれば、インストール完了

これでcomposerの準備は完了です。

②Laravelインストール

1. ターミナルにて下記を実行

ターミナル
$ composer global require laravel/installer

これでLaravelがインストールされます。

2. 環境変数PATHの設定

  • ターミナルにて下記を実行
ターミナル
$ echo "export PATH=~/.composer/vendor/bin:$PATH" >> ~/.bash_profile
$ source ~/.bash_profile

環境変数を追加して使うことで、Laravelコマンドが認識されるようになります。
一度、設定するといつでもLaravelコマンドを使用することが出来ます

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?