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 1 year has passed since last update.

Laravelでプロジェクトを作成する

Posted at

PHPのLaravelでプロジェクトを作成する手順

事前確認:

  1. 自分のPCのPHPが入っていることを確認(今回はXHAMPを使用)
    $ php -v
    PHP 8.1.6 (cli) (built: May 11 2022 08:55:59) (ZTS Visual C++ 2019 x64)
    Copyright (c) The PHP Group
    Zend Engine v4.1.6, Copyright (c) Zend Technologies
    
  2. 同じくLaraveleインストールされていることを確認
    $ laravel --version
    Laravel Installer 4.2.16
    
    もしインストールされていない場合は、以下のコマンドを実施
    $ composer global require laravel/installer
    
    そもそもcomposerがインストールされていなかったら、以下のWEBサイトからインストール
    https://getcomposer.org/

プロジェクトを作成

以下のコマンドを実行

$ laravel new testapp

アプリケーションを実行

$ cd testapp
$ php artisan serve
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?