Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install zend framework 2.4.11 skeleton application

I am trying to install ZF 2.4.11 using https://framework.zend.com/manual/2.4/en/ref/installation.html , but after completing the installation, the home page displays ZF version 3.0.2 DEV.

How can I correctly install Zend Skeleton Application of desired version (2.4.11).

I am using php 5.6.

like image 769
Hiranya Sarma Avatar asked Jan 28 '17 14:01

Hiranya Sarma


People also ask

Which command is used to install Zend Framework 2?

Go to https://github.com/zendframework/ZendSkeletonApplication and click the “Zip” button. This will download a file with a name like ZendSkeletonApplication-master. zip or similar. Unzip this file into the directory where you keep all your vhosts and rename the resultant directory to zf2-tutorial.

What is skeleton application?

Skeletons are integrated starter packages for ESP applications. Skeletons typically include default web pages, layouts, partial pages, stylesheets, scripts and required dependent packages for an easy, one-step launch of your web application.


1 Answers

Execute following:

$ git clone https://github.com/zendframework/ZendSkeletonApplication.git zf2
$ cd zf2
$ git checkout origin/release-2.4 

You will get a message:

HEAD is now at ff7b0e4... Pin to 2.4.11 series

After that just run:

$ composer install

you will have ZF 2.4.11 installed.

In the future you will got the latest version.

like image 125
tasmaniski Avatar answered Oct 26 '22 23:10

tasmaniski