Copy-pasted from the other thread, but Alexandru Pătrănescu already covered the topic quite well, so you may as well skip this message.
All Doctrine 2 ORM versions depend on a set of libraries: - Doctrine\Common (which is not just a single library since 2.4.0) - Doctrine\DBAL - Symfony\Console - Symfony\Yaml The 2.4 releases are not going to be released as PEAR packages because of the increase of dependencies caused by the split-up of Doctrine\Common into different packages. Switch to composer ASAP, or you'll be likely building something that is deprecated from the beginning. You may verify what versions of doctrine/orm are available via composer from https://packagist.org/packages/doctrine/orm as well. Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/ On 31 January 2014 16:58, Alexandru Pătrănescu <[email protected]> wrote: > Nowadays libraries are not "downloaded" but "installed" and this happens > usually with composer. > You have to do this because doctrine/orm has requirements. > doctrine/orm depends on: > - doctrine/collections > - doctrine/dbal > - symfony/console > > doctrine/dbal depends on: > - doctrine/common > > doctrine/common depends on: > - doctrine/inflector > - doctrine/cache > - doctrine/collections > - doctrine/lexer > - doctrine/annotations > > and finnaly doctrine/annotations depends on doctrine/lexer but we have > this already as is required by doctrine/common also > > Use the information here to install through composer: > > http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/configuration.html#installation-and-configuration > > If you really want to download doctrine/orm you can see the releases here: > https://github.com/doctrine/doctrine2/releases > > > > On Fri, Jan 31, 2014 at 5:37 PM, <[email protected]> wrote: > >> >> v2.4.1 is stable? sorry I cannot find the download link for this version >> on the page: http://www.doctrine-project.org/projects/orm.html >> please advice. >> >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "doctrine-user" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To post to this group, send email to [email protected]. >> Visit this group at http://groups.google.com/group/doctrine-user. >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- > You received this message because you are subscribed to the Google Groups > "doctrine-user" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/doctrine-user. > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "doctrine-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/doctrine-user. For more options, visit https://groups.google.com/groups/opt_out.
