From cca0a0b2d43db674c857793f96173a5d2c6de120 Mon Sep 17 00:00:00 2001 From: Spencer Williams Date: Thu, 15 Jan 2015 14:51:47 -0700 Subject: [PATCH] Make mention of the vendor\bin location on Windows --- quick.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick.md b/quick.md index 45c63f0f970..08d39be207f 100644 --- a/quick.md +++ b/quick.md @@ -18,7 +18,7 @@ First, download the Laravel installer using Composer. composer global require "laravel/installer=~1.1" -Make sure to place the `~/.composer/vendor/bin` directory in your PATH so the `laravel` executable is found when you run the `laravel` command in your terminal. +Make sure to place the `~/.composer/vendor/bin` directory in your PATH (or `C:\%HOMEPATH%\AppData\Roaming\Composer\vendor\bin` if working with Windows) so the `laravel` executable is found when you run the `laravel` command in your terminal. Once installed, the simple `laravel new` command will create a fresh Laravel installation in the directory you specify. For instance, `laravel new blog` would create a directory named `blog` containing a fresh Laravel installation with all dependencies installed. This method of installation is much faster than installing via Composer.