You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
3.4 KiB

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