I'm trying to install magento 2.3.2 via composer and have come acrosss this article about how to do it.
I wonder what the last parameters of this command is:
composer create-project --repository=https://repo.magento.com/ magento/project-community-edition .
When I run composer help I get this:
create-project [options] [--] [<package>] [<directory>] [<version>]
So I wonder about magento/project-community-edition .
In the article it says run the command from the root directory, does that mean this will command will create a magento/project-community-edition subfolder?..
We have a public_html folder, so maybe I should run it like this (if run from root folder of web directory):???
composer create-project --repository=https://repo.magento.com/ public_html .
not sure what . do either, but I read that it is something with version
any ideas?
When I do that it creates a folder called "project-community-edition" in my current directory. kinda sucks
Honestly since there's no documentation of this in the magento docs i just fix it with a mv command.
Just move the files recursively and with the permissions to the directory above. force it so it overwrites and you're good.
@mykkal I hope you find the solution but the trouble you faced, I think due to you missed dot '.' in command
composer create-project --repository=https://repo.magento.com/ magento/project-community-edition .
Forgot to reply those years ago but thank you!