Last active
October 22, 2017 22:21
-
-
Save uehatsu/19c0ad52c410afc4d4e060d19c060861 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# blogというプロジェクト名でVer. 5.5のLaravelプロジェクトを作成する方法 | |
$ composer create-project --prefer-dist laravel/laravel blog 5.5 | |
1. composer : composerのプログラム名 | |
2. create-project : この後で指定するvender/projectを生成するようcomposerに指示するコマンド | |
3. --prefer-dist : デフォルトなので省略可能。githubなどのから直接ソースをダウンロードする場合は--prefer-sourceを指定する(利用することは無いと思います) | |
4. laravel/laravel : (vendor)/(project)を指定(vendoer = laravel, project = laravel) Laravelのプロジェクトを作るときに指定 | |
5. blog : プロジェクト名の例、好きな名前を指定する | |
6. 5.5 : バージョン、5.5と指定するとその時の最新の5.5系がインストールされる。省略すると最新のLaravelがインストールされる |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment