Download Propel
For a full installation tutorial, check the Installation documentation. The following options allow you to download the Propel code and documentation.
Git
Clone it:
$ git clone git://github.com/propelorm/Propel.git
Or add it as a submodule:
$ git submodule add git://github.com/propelorm/Propel.git /path/to/propel
Subversion Checkout / Externals
$ svn co http://svn.github.com/propelorm/Propel.git
Warning
SVN is no longer the default Source Code Management since 2011.
PEAR Installer
Propel is available through its own PEAR channel pear.propelorm.org, in two separate packages for generator and runtime:
$ pear channel-discover pear.propelorm.org
$ sudo pear install -a propel/propel_generator
$ sudo pear install -a propel/propel_runtime
Propel depends on the Phing library, and the dependency should be properly handled by PEAR thanks to the -a option above. Alternatively, you can install Phing separately:
$ pear channel-discover pear.phing.info
$ sudo pear install phing/phing
Tip
If you would like to use a beta or RC version of Propel, you may need to change your preferred_state PEAR environment variable.
Full Propel Package
Please download one of the packages below if you would like to install the traditional Propel package, which includes both runtime and generator components.
Other releases are available for download at files.propelorm.org.
License
Copyright (c) 2005-2011 Hans Lellelid, David Zuelke, Francois Zaninotto, William Durand
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Found a typo ? Something is wrong in this documentation ? Just fork and edit it !