set owner symfony

To set the owner of a Symfony project, you can use the chown command in the terminal. Here's the command you can use:

sudo chown -R ownername:groupname /path/to/symfony/project

Replace ownername with the desired owner username and groupname with the desired group name. Also, replace /path/to/symfony/project with the actual path to your Symfony project directory.

Please note that you need to have administrative privileges (sudo) to change the owner of a file or directory.