2
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 5 years have passed since last update.

【初心者用】LaravelをMacにインストール

Last updated at Posted at 2019-05-19

はじめに

PHPのフレームワークLaravelをMacにインストールしていきます。

Laravelのインストールには、
PHPのライブラリ管理ツールComposerを使用します。
Composerをインストールする時には、
Homebrewというパッケージ管理ツールを使うので、
それに伴い、PHPもHomebrewでインストールしておく必要があります。

下記の記事を参考にPHPをHomebrewでインストールしておいてください。

参考:https://qiita.com/5ryo_ryo5/items/f38edd2b5ed3e30e7760

目次

  1. Homebrewをアップデート
  2. Composerをインストール
  3. パスを通す
  4. Laravelアプリ作成
  5. Laravelアプリ起動

1. Homebrewをアップデート

一応Homebrewをアップデートして起きます。

terminal
$ brew upgrade

2. Composerをインストール

Homebrewを使って、Composerをインストールしていきます。

terminal
$ brew install composer
==> Downloading https://getcomposer.org/download/1.8.5/composer.phar
######################################################################## 100.0%
🍺  /usr/local/Cellar/composer/1.8.5: 3 files, 1.8MB, built in 14 seconds

バージョンを確認していきましょう

terminal
$ composer -v
   ______
  / ____/___  ____ ___  ____  ____  ________  _____
 / /   / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ (__  )  __/ /
\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
                    /_/
Composer version 1.8.5 2019-04-09 17:46:47

超かっこいいじゃん、これ笑!

3. パスを通す

どこでも使えるようにパスを通していきましょう

terminal
$ export PATH="$PATH:$HOME/.composer/vendor/bin"

以下のコマンドで変更を反映

terminal
$ source ~/.bash_profile

4. Laravelアプリ作成

さっそくLaravelアプリ作成していきましょう!

Laravelアプリは、指定のディレクトリでlaravel new アプリ名で作成できます。

terminal
# 指定のディレクトリに移動
$ cd 指定のディレクトリ名

# Laravelアプリ作成(test_appというアプリ名で作成)
$ laravel new test_app
Crafting application...

〜〜〜だいぶ省略〜〜〜

Application ready! Build something amazing.

Application ready! Build something amazing.
となれば、アプリ作成完了です!

追記:laravel new test_appだと、ダウングレードすることがあるらしく、composer create-project laravel/laravel:5.5.* test_app --prefer-distで、アプリ作成した方が良いみたい

5. Laravelアプリ起動

先ほど作成したアプリのフォルダに移動し、
php artisan serveで起動してみましょう!

terminal
#作ったアプリのディレクトリに移動(上記で作ったtest_appに移動)
$ cd test_app

#アプリを起動
$ php artisan serve
Laravel development server started: <http://127.0.0.1:8000>

http://127.0.0.1:8000
にアクセスしてみましょう!
Alt text

このページが表示されていれば、起動できてます!

ちなみに終了する際は、control + Cで終了できますぅ〜

参考サイト

2
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
2
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?