2
0

INSTALL.txt 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. * Using a git client. Zend Framework is open source software, and
  20. the git repository used for its development is publicly available. Consider
  21. using git to get Zend Framework if you already use git for your application
  22. development, want to contribute back to the framework, or need to upgrade your
  23. framework version very often.
  24. Checking out a working copy is necessary if you would like to directly contribute
  25. to Zend Framework; a working copy can be updated any time with `git fetch &&
  26. git rebase origin/master`.
  27. A git submodules definition is highly convenient for developers already using
  28. git to manage their application working copies.
  29. The URL for the the Zend Framework 1.X git repository is:
  30. https://github.com/zendframework/zf1
  31. For more information about git, please see the official website:
  32. http://git-scm.com
  33. * Using Subversion. You may pin an svn:externals definition to our repository.
  34. For versions prior to 1.12.0, use the following URLs:
  35. http://framework.zend.com/svn/framework/standard/branches/release-1.{minor version}
  36. http://framework.zend.com/svn/framework/standard/tags/release-1.{minor version}.{maintenance version}
  37. http://framework.zend.com/svn/framework/extras/branches/release-1.{minor version}
  38. For versions 1.12.0 and on, use the following URLs:
  39. https://github.com/zendframework/zf1/trunk (development version)
  40. https://github.com/zendframework/zf1/tags/release-1.12.{maintenance version}
  41. https://github.com/zendframework/zf1-extras/trunk
  42. For more information on subversion, please visit the official website:
  43. http://subversion.apache.org/
  44. CONFIGURING THE INCLUDE PATH
  45. ----------------------------
  46. Once you have a copy of Zend Framework available, your application will need to
  47. access the framework classes. Though there are several ways to achieve this, your
  48. PHP include_path needs to contain the path to the Zend Framework classes under the
  49. /library directory in this distribution. You can find out more about the PHP
  50. include_path configuration directive here:
  51. http://www.php.net/manual/en/ini.core.php#ini.include-path
  52. Instructions on how to change PHP configuration directives can be found here:
  53. http://www.php.net/manual/en/configuration.changes.php
  54. GETTING STARTED
  55. ---------------
  56. A great place to get up-to-speed quickly is the Zend Framework QuickStart:
  57. http://framework.zend.com/docs/quickstart
  58. The QuickStart covers some of the most commonly used components of ZF. Since
  59. Zend Framework is designed with a use-at-will architecture and components are
  60. loosely coupled, you can select and use only those components that are needed for
  61. your project.