smile 22121
smile 22121

Reputation: 295

Symfony 3 app/console not found

I use for the first time Symfony 3, I wanted to install the assets so I run :

php app/console assets:install --symlimk

And I get the error:

Could not open input file: app/console

I added it to my composer.json and updated composer but same problem. any idea?

Upvotes: 2

Views: 2157

Answers (1)

xabbuh
xabbuh

Reputation: 5881

In Symfony 3.0, the directory structure was changed. So now you have to use bin/console instead of app/console.

Upvotes: 9

Related Questions