How to install zend framework 2.4.11 skeleton application

折月煮酒 提交于 2019-12-04 07:48:43

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.

  1. git Clone the application in folder skeleton

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

2.cd to skeleton application

cd skeleton application

  1. checkout the release 2.4.11 as:

git checkout origin/release-2.4

after installing composer from https://getcomposer.org/ you can run the below comand that will automatic create a project with zend 2.4

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

or

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

Without cloning via git command, you can install directly via composer command:

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

Just put the ZF version you desired. One line command.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!