forked from zendframework/zendframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL.txt
68 lines (47 loc) · 2.58 KB
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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.4 or later. Please see the system requirements
appendix for more detailed information:
http://framework.zend.com/manual/en/requirements.html
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:
* Using a Git client. Zend Framework is open source software, and the Git
repository used for its development is publicly available. Consider using Git
to get Zend Framework if you already use Git for your application development,
want to contribute back to the framework, or need to upgrade your framework
version very often.
Checking out a working copy is necessary if you would like to directly contribute
to Zend Framework; a working copy can be updated any time using git pull.
To clone the git repository, use the following URL:
git://git.zendframework.com/zf.git
For more information about Git, please see the official website:
http://www.git-scm.org
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:
http://www.php.net/manual/en/ini.core.php#ini.include-path
Instructions on how to change PHP configuration directives can be found here:
http://www.php.net/manual/en/configuration.changes.php
GETTING STARTED
---------------
A great place to get up-to-speed quickly is the Zend Framework QuickStart:
http://framework.zend.com/manual/en/learning.quickstart.html
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.