1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/docs/en/reference/installation.rst

19 lines
501 B
ReStructuredText

Installation
============
Doctrine was installable in many different ways, however `Composer <http://www.getcomposer.org>`_ turned out to be one of the best things for PHP in a long time.
This is why we moved all installation to use Composer only.
Define the following requirement in your ``composer.json`` file:
::
{
"require": {
"doctrine/orm": "*"
}
}
Then run the composer command and you are done. Continue with the
:doc:`Configuration <configuration>`.