Installation ============ Doctrine can be installed many different ways. We will describe all the different ways and you can choose which one suits you best. Composer -------- `Composer `_ is the suggested installation method for Doctrine. 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 `. PEAR ---- You can easily install any of the three Doctrine packages from the PEAR command line installation utility. To install just the ``Common`` package you can run the following command: .. code-block:: bash $ sudo pear install pear.doctrine-project.org/DoctrineCommon- If you want to use the Doctrine Database Abstraction Layer you can install it with the following command. .. code-block:: bash $ sudo pear install pear.doctrine-project.org/DoctrineDBAL- Or, if you want to get the works and go for the ORM you can install it with the following command. .. code-block:: bash $ sudo pear install pear.doctrine-project.org/DoctrineORM- .. note:: The ```` tag above represents the version you want to install. For example if the current version at the time of writing this is ``2.2.2`` for the ORM, so you could install it like the following: .. code-block:: bash $ sudo pear install pear.doctrine-project.org/DoctrineORM-2.2.2 Package Download ---------------- You can also use Doctrine 2 by downloading the latest release package from `the download page `_. See the configuration section on how to configure and bootstrap a downloaded version of Doctrine. GitHub ------ Alternatively you can clone the latest version of Doctrine 2 via GitHub.com: .. code-block:: php $ git clone git://github.com/doctrine/doctrine2.git doctrine This downloads all the sources of the ORM package. You need to initialize the Github submodules for the Common and DBAL package dependencies: .. code-block:: php $ git submodule init $ git submodule update This updates your Git checkout to use the Doctrine and Doctrine package versions that are recommended for the cloned Master version of Doctrine 2. See the configuration chapter on how to configure a Github installation of Doctrine with regards to autoloading. .. note:: You should not combine the Doctrine-Common, Doctrine-DBAL and Doctrine-ORM master commits with each other in combination. The ORM may not work with the current Common or DBAL master versions. Instead the ORM ships with the Git Submodules that are required.