Console Commands

The Doctrine MongoDB 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 doctrine/data-fixtures package installed. To learn how to do it, read the Doctrine Data Fixtures.