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

【Laravel】初学者向け-Laravel9の環境設定

Posted at

今回は、windowsでLaravel9の環境設定を行いたいと思います。

事前に下記の設定を完了してから、こちらを進めることをおすすめいたします。

Laravel9をインストール方法

以下、手順でLaravel9をインストールします。

・「Windows」を押下し、「コマンドプロンプト」を開く

・フォルダに移動
※php_testとcomposertestは自分でフォルダを作成しているため、
C:\xampp\htdocs…のパスにインストールすればOK。
※インストールに少し時間がかかります(5分ぐらい?)※

cd C:\xampp\htdocs\php_test\composertest

・ Laravel9をインストール「コマンドプロンプト」に下記コマンドをたたく

composer create-project "laravel/laravel=9.*" task_test --prefer-dist

■意味
"laravel/laravel=9.*"
→Laravel9系を指定
task_test
→フォルダ名を指定
--prefer-dist
→オプションで圧縮版をインストール

・「コマンドプロンプト」で下記に移動
※C:\xampp\htdocs\php_test\composertestのフォルダを確認すると、「task_test」がインストールされていたらOK!

cd C:\xampp\htdocs\php_test\composertest\task_test

VSコードでもインストールされているか確認

・VSコードを開き、左上にある「ファイル」→「フォルダーを開く」を選択
image.png

・「task_test」を選択し、「フォルダーの選択」を押下
image.png

・下記で確認できたらOK!
image.png

Laravelのホームページ確認

・コマンドプロンプトに戻り、開発サーバーが立ち上がっているか確認

php artisan serve 
INFO Server running on [http://127.0.0.1:8000].
Press Ctrl+C to stop the server

・chromeにて「http://127.0.0.1:8000」にアクセスし、Laravelのページが開けばOK!
image.png

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