views:

151

answers:

1

I'm trying to install this ORM library,

but I see it requires PEAR Installer and Pear Package,where are they used?

+7  A: 

I don't think it's required, i think it's rather a way to install it.

from http://www.doctrine-project.org/documentation/manual/1_2/nl/getting-started

"Currently it is possible to install Doctrine four different ways that are listed below:

* SVN (subversion)
* SVN externals
* PEAR Installer
* Download PEAR Package"
t00ny
Indeed PEAR is not required. You can download the Doctrine library directly from the website and just put `Doctrine.php` and the `Doctrine` folder in your include / autoload path.
Bryan M.
PEAR is usually the better way to install libraries/packages as it makes upgrading and rolling back to different versions hassle-free and also works out interdependencies much like apt or rpm does.It seems though that doctrine's pear channel is not working at the moment.my slides from a talk I gave ( http://talks.php.net/show/ossbarcamp2009/5 ) have some info on the subject.
kguest