Laravel installer - stuck in a drawing application

So many days I used the composer create-project method to install laravel, and then today I found this cool laravel installation method in the laravel documentation .

I quickly composer global require "laravel/installer=~1.1" and received a success message. He also said that he was installed in the ~\AppData\Roaming\Composer\vendor\bin , and not the ~/.composer/vendor/bin mentioned in the documentation. I configured the PATH variable accordingly. (Is something wrong there?)

In any case, I went to the directory of the project I wanted to run and ran the laravel new master command and it gets stuck in the Crafting Application... I stopped him once and started him again once, and everything went on. Of course, I do not want this cool method to work so slowly. What should I do?

Additional Information: -

  • Internet speed: 1 Mbps
  • OS: Windows 10
  • Processor: Intel Core i5-4440 CPU @ 3.10GHz (This means that speed matters).

UPDATE The process took about 10-15 minutes. Isn't that too much? This did not correspond to the composer's creation-project method.

+5
source share
1 answer

Have you tried installing php with the Mbstring PHP extension? PHP Tokenizer Extension? and I think the laravel team is an alias of the real composer team to create a new project. Instead, try using "composer create-project laravel / laravel [insert_project_name]".

+1
source

Source: https://habr.com/ru/post/1234249/


All Articles