We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Installing Phalcon 3

Git Master Branch is version 4 not current stable version.

git clone --depth=1 "git://github.com/phalcon/cphalcon.git"

is giving me version 4 instead of 3



10.1k
Accepted
answer

The master is already on v4. You can clone a specific tag using this command.

git clone --branch v3.4.2 --depth=1 "git://github.com/phalcon/cphalcon.git"

Thanks that worked, can you update the documents to help others that are looking to install the current stable version.

The master is already on v4. You can clone a specific tag using this command.

git clone --branch v3.4.2 --depth=1 "git://github.com/phalcon/cphalcon.git"