Error creating project Laravel

-4
C:\xampp\htdocs>laravel new blog
Crafting application...
  

[Symfony \ Component \ Process \ Exception \ RuntimeException]     TTY mode is not supported on Windows platform.

     

new [--dev] [-] name

Can you tell me what the error is?

    
asked by anonymous 26.03.2016 / 15:19

1 answer

2

Simple, to solve go to your composer.json in folder C:\users\myname\appdata\Roaming\Composer\composer.json (more or less that).

Modify:

"laravel/installer": "^1.3" to "laravel/installer": "^1.3 !=1.3.2" .

Then run the command: composer global update .

    
07.04.2016 / 19:35