Download Propel
Note: The version 2 of Propel is still under development. Please visit http://propelorm.org/Propel/ if you want to use a stable version.
For a full installation tutorial, check the Installation documentation. The following options allow you to download the Propel code and documentation.
Composer
You can download Propel using Composer. First, download the composer.phar
file using one of the following command depending on your system:
$ curl -sS https://getcomposer.org/installer | php
# Alternatively
$ wget http://getcomposer.org/composer.phar
Then touch a composer.json
file with the following content
{
"require": {
"propel/propel": "~2.0@beta"
}
}
Then simply run php composer.phar install
to fetch Propel and its dependencies.
Git
Clone it:
$ git clone git://github.com/propelorm/Propel2.git
Or add it as a submodule:
$ git submodule add git://github.com/propelorm/Propel2.git /path/to/propel
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) Since 2005 Hans Lellelid, David Zuelke, Francois Zaninotto, William Durand, Marc J. Schmidt
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.