Skip to content

Latest commit

 

History

History
89 lines (61 loc) · 3.52 KB

INSTALL.md

File metadata and controls

89 lines (61 loc) · 3.52 KB

INSTALLATION

Zend Framework requires no special installation steps. Simply download the framework, extract it to the folder you would like to keep it in, and add the library directory to your PHP include_path. To use components in the extras library, add the extras/library directory to your PHP include_path, as well. If you would like to use Zend_Tool, simply add bin/zf.bat (for Windows) or bin/zf.sh (for anything else) to your system executable path.

SYSTEM REQUIREMENTS

Zend Framework requires PHP 5.2.11 or later. Please see the system requirements appendix for more detailed information:

DEVELOPMENT VERSIONS

If you would like to preview enhancements or bug fixes that have not yet been released, you can obtain the current development version of Zend Framework using one of the following methods:

CONFIGURING THE INCLUDE PATH

Once you have a copy of Zend Framework available, your application will need to access the framework classes. Though there are several ways to achieve this, your PHP include_path needs to contain the path to the Zend Framework classes under the /library directory in this distribution. You can find out more about the PHP include_path configuration directive here:

Instructions on how to change PHP configuration directives can be found here:

GETTING STARTED

A great place to get up-to-speed quickly is the Zend Framework QuickStart:

The QuickStart covers some of the most commonly used components of ZF. Since Zend Framework is designed with a use-at-will architecture and components are loosely coupled, you can select and use only those components that are needed for your project.