[ZF-2376]: Removed superfluous require_once statements from Zend_Gdata.
[zend.git] / INSTALL.txt
blob778fa316ae6b4c31afb882f3b39306a54475874b
1 INSTALLATION
2 ------------
4 The Zend Framework requires no special installation steps. Simply get
5 a copy of the framework and ensure that the /library directory is in
6 your PHP include_path.
9 SYSTEM REQUIREMENTS
10 -------------------
12 Zend Framework is built with object-oriented PHP 5 and requires
13 PHP 5.1.4 or later. Please see the system requirements appendix for
14 more detailed information:
16 http://framework.zend.com/manual/en/requirements.html
19 GETTING ZEND FRAMEWORK
20 ----------------------
22 Once an appropriate PHP environment is available, the next step is to
23 get a copy of the Zend Framework, which may be officially obtained by
24 any of the following methods:
26 * Download the latest stable release. This version, available in both
27   .zip and .tar.gz formats, is a good choice for those who are new to
28   Zend Framework.
30   http://framework.zend.com/download/stable
32 * Download the latest nightly snapshot. For those who would brave the
33   cutting edge, the nightly snapshots represent the latest progress of
34   Zend Framework development. Snapshots are bundled with documentation
35   either in English only or in all available languages. If you
36   anticipate working with the latest Zend Framework developments,
37   consider using a Subversion (SVN) client.
39   http://framework.zend.com/download/snapshot
41 * Using a Subversion (SVN) client. Zend Framework is open source
42   software, and the Subversion repository used for its development is
43   publicly available. Consider using SVN to get the Zend Framework if
44   you already use SVN for your application development, want to
45   contribute back to the framework, or need to upgrade your framework
46   version more often than releases occur.
48   Exporting is useful if you want to get a particular framework
49   revision without the .svn  directories as created in a working copy.
51   Checking out a working copy is good when you might contribute to Zend
52   Framework, and a working copy can be updated any time with svn update.
54   An externals definition is highly convenient for developers already
55   using SVN to manage their application working copies.
57   The URL for the trunk of the Zend Framework SVN repository is:
59   http://framework.zend.com/svn/framework/trunk
61   For more information about Subversion, please see the official website:
63   http://subversion.tigris.org
66 USING ZEND FRAMEWORK
67 --------------------
69 Once you have a copy of the Zend Framework available, your application
70 needs to be able to access the framework classes. Though there are several
71 ways to achieve this, your PHP include_path needs to contain the path to
72 the Zend Framework library.
74 About the PHP include_path configuration directive:
76 http://www.php.net/manual/en/ini.core.php#ini.include-path
78 How to change PHP configuration directives:
80 http://www.php.net/manual/en/configuration.changes.php
82 One of the Zend Framework's most useful features is its implementation of
83 the Front Controller and Model-View-Controller (MVC) patterns. Get started
84 with Zend Framework MVC with the Zend_Controller Quick Start:
86 http://framework.zend.com/manual/en/zend.controller.html#zend.controller.quickstart
88 Since Zend Framework components are rather loosely coupled, various
89 components may be selected for independent use as needed.