Open
Description
I have a fresh install of Symfony 4.4 and after installation i'm facing the following issue:
After running:
php bin/console make:user
It creates the files:
The name of the security user class (e.g. User) [User]:
> User
Do you want to store user data in the database (via Doctrine)? (yes/no) [yes]:
>
Enter a property name that will be the unique "display" name for the user (e.g. email, username, uuid) [email]:
>
Will this app need to hash/check user passwords? Choose No if passwords are not needed or will be checked/hashed by some other system (e.g. a single sign-on server).
Does this app need to hash/check user passwords? (yes/no) [yes]:
>
created: home/src/Entity/User.php
created: home/src/Repository/UserRepository.php
updated: home/src/Entity/User.php
updated: config/packages/security.yaml
Success!
Next Steps:
- Review your new App\Entity\User class.
- Use make:entity to add more fields to your User entity and then run make:migration.
- Create a way to authenticate! See https://symfony.com/doc/current/security.html
It's creating the files in home/, instead of the already existing src/ folder.
How could I fix this?