Laravel新規プロジェクト作成方法
最新のLaravelバージョンで作成
// composerを使用した方法
$ composer create-project laravel/laravel {プロジェクト名} --prefer-dist
// 例
$ composer create-project laravel/laravel sample --prefer-dist
// Laravelインストーラを使用した方法
$ laravel new {プロジェクト名}
// 例
$ laravel new sample
指定のLaravelバージョンで作成
// composerを使用した方法
$ composer create-project laravel/laravel {プロジェクト名} "{バージョン}" --prefer-dist
// 例
$ composer create-project laravel/laravel sample "8.*" --prefer-dist
Laravel Sailを使用する場合
$ curl -s https://laravel.build/{プロジェクト名} | bash
// 例
$ curl -s https://laravel.build/sample | bash
Author And Source
この問題について(Laravel新規プロジェクト作成方法), 我々は、より多くの情報をここで見つけました https://qiita.com/devWill/items/1d221f2a412a4a7b90ed著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .