4 Zend Framework requires no special installation steps. Simply download the framework,
5 extract it to the folder you would like to keep it in, and add the /library directory
6 to your PHP include_path.
11 Zend Framework requires PHP 5.1.4 or later. Please see the system requirements
12 appendix for more detailed information:
14 http://framework.zend.com/manual/en/requirements.html
19 If you would like to preview enhancements or bug fixes that have not yet been
20 released, you can obtain the current development version of Zend Framework using one
21 of the following methods:
23 * Download the latest nightly snapshot. For those who care to brave the cutting
24 (often bleeding) edge, the nightly snapshots represent the latest single-
25 download development version of Zend Framework development. Snapshots are bundled
26 with documentation in English only or in all available languages. If you anticipate
27 updating to the latest development version of Zend Framework often, consider using
28 Subversion as described below.
30 http://framework.zend.com/download/snapshot
32 * Using a Subversion (SVN) client. Zend Framework is open source software, and
33 the Subversion repository used for its development is publicly available. Consider
34 using SVN to get Zend Framework if you already use SVN for your application
35 development, want to contribute back to the framework, or need to upgrade your
36 framework version very often.
38 Exporting is useful if you want to get a particular framework revision without the
39 .svn directories as created in a working copy.
41 Checking out a working copy is necessary if you would like to directly contribute
42 to Zend Framework; a working copy can be updated any time with svn update.
44 An externals definition is highly convenient for developers already using SVN to
45 manage their application working copies.
47 The URL for the trunk of the Zend Framework SVN repository is:
49 http://framework.zend.com/svn/framework/trunk
51 For more information about Subversion, please see the official website:
53 http://subversion.tigris.org
55 CONFIGURING THE INCLUDE PATH
56 ----------------------------
58 Once you have a copy of the Zend Framework available, your application will need to
59 access the framework classes. Though there are several ways to achieve this, your
60 PHP include_path needs to contain the path to the Zend Framework classes under the
61 /library directory in this distribution. You can find out more about the PHP
62 include_path configuration directive here:
64 http://www.php.net/manual/en/ini.core.php#ini.include-path
66 Instructions on how to change PHP configuration directives can be found here:
68 http://www.php.net/manual/en/configuration.changes.php
73 A great place to get up-to-speed quickly is the Zend Framework QuickStart:
75 http://framework.zend.com/docs/quickstart
77 The QuickStart covers some of the most commonly used components of ZF. Since
78 Zend Framework is designed with a use-at-will architecture and components are
79 loosely coupled, you can select and use only those components that are needed for