I am trying to use laravel 5.1 on Windows Server 2008 R2.
I following the documentation when I try to create a new project like this
laravel new blog
I get the following
Crafting application...
Could not open input file: composer.phar
Application ready! Build something amazing.
where is it looking for composer.phar so I can move it to the correct place?
Additionally when I issue the same command again
laravel new blog
I get this other issue
[RuntimeException]
Application already exists!
new <name>
What do I need to do to correctly create a new project?
Thank you
composer global require "laravel/installer=~1.1"composer create-project laravel/laravel --prefer-distand now I am able to go to example.com/laravel/public` did I do it correct? and if I want to create another project do I execute the same command?composer create-project laravel/laravelis correct, you can also docomposer create-project laravel/laravel mydir.