Cannot start php bin / console in symfony

I am new to symfony, after the instructions for installing it, he said that I need to run:

bin/console server:run 

i print it in my symfony installation folder. but I got an error:

Could not open input file: bin/console

and then I'm looking for an answer here, and he told me to launch the application / console

bin/console server:run 

but he has the same problem. Did I miss some bin folder here or something else? since I do not see the bin folder or application folder in the project root folder. here is my project folder structure: enter image description here

+4
source share
1 answer

You have explicitly cloned a Git repository that does not contain all of the Symfony Framework components.

symfony symfony installer http://symfony.com/doc/current/setup.html

composer create-project symfony/framework-standard-edition my_project_name.

0

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


All Articles