Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention that this bundle is only for ORM #321

Merged
merged 2 commits into from
May 20, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions Resources/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ DoctrineFixturesBundle

Fixtures are used to load a "fake" set of data into a database that can then
be used for testing or to help give you some interesting data while you're
developing your application. This bundle makes creating fixtures *easy*, and
supports the `ORM`_ (MySQL, PostgreSQL, SQLite, etc.).
developing your application.

This bundle is compatible with any database supported by `Doctrine ORM`_
(MySQL, PostgreSQL, SQLite, etc.). If your database is MongoDB, you must use
instead the `DoctrineMongoDBBundle`_.
javiereguiluz marked this conversation as resolved.
Show resolved Hide resolved

Installation
------------
Expand Down Expand Up @@ -382,3 +385,6 @@ With the ``--purger`` option we can now specify to use ``my_purger`` instead of
.. code-block:: terminal

$ php bin/console doctrine:fixtures:load --purger=my_purger

.. _`Doctrine ORM`: https://symfony.com/doc/current/doctrine.html
.. _`DoctrineMongoDBBundle`: https://github.com/doctrine/DoctrineMongoDBBundle