Reputation: 295
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
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