You are browsing a version that has not yet been released.

Console Commands

The Doctrine2 ODM integration offers various console commands under the doctrine:mongodb namespace. To view the command list you can run the console without any arguments:

$ php bin/console

A list of available commands will be printed out, several of them start with the doctrine:mongodb prefix. You can find out more information about any of these commands (or any Symfony command) by running the help command. For example, to get details about the doctrine:mongodb:query task, run:

$ php bin/console help doctrine:mongodb:query

To be able to load data fixtures into MongoDB, you will need to have the DoctrineFixturesBundle bundle installed. To learn how to do it, read the "DoctrineFixturesBundle" entry of the documentation.