I am starting with Symfony 4 and I want to install FosUserBundle at this link:
https://symfony.com/doc/master/bundles/FOSUserBundle/index.html
At first:
My problem is that I do not know where to find the file "app / config / config.yml" to uncomment the translator and configure:
fos_user:
db_driver: orm # other valid values are 'mongodb' and 'couchdb'
firewall_name: main
user_class: AppBundle\Entity\User
from_email:
address: "%mailer_user%"
sender_name: "%mailer_user%"
Second:
I think I need to create a security.yml file in the "config / packages /" directory, right?
Third:
And in which file to add the route?
Could you help me?:)
source
share