I apologize if this is a trivial question.
The installation guide for ZfcBase only provides this much info;
“Simply clone this project into your ./vendor/ directory and enable it
in your ./config/application.config.php file.”
I don’t have git on my shared hosting solution, but I am using composer.
Could anyone give me a generic way in which I can install Zfc modules without git? (I’m new to Zend)
Edit: I’m guessing I can wget the zip to my /vendor folder and unzip it there? But this wouldn’t be good, as I don’t want to manually update it if a new version comes in.
If you’re using composer, then add
"zf-commons/zfc-base": "dev-master"to therequiresection of your composer.json. so that it looks something like:Now you run:
On the command line.