How to install zend framework 2.4.11 skeletal application

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

How to install Zend Skeleton Correctly Using the desired version (2.4.11) .

I use php 5.6.

+4
source share
3 answers

Do the following:

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

You will receive a message:

HEAD is now on ff7b0e4 ... Pin until 2.4.11 series

After that, just run:

$ composer install

You will have ZF 2.4.11 installed.

.

+8
  • git

git clone https://github.com/zendframework/ZendSkeletonApplication.git

2.cd

cd

  1. 2.4.11 :

git checkout origin/release-2.4

https://getcomposer.org/ , zend 2.4

composer create-project zendframework/skeleton-application path/to/install ^2.4

 php composer.phar create-project zendframework/skeleton-application path/to/install ^2.4
+2

git :

$ composer create-project zendframework/skeleton-application path/to/install 2.4

ZF. .

0

Source: https://habr.com/ru/post/1668111/


All Articles