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
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"