This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/DoctrineAbstractBundle
Fabien Potencier 8b8545895f [DoctrineBundle] fixed auto-mapping
When auto_mapping is true, you can avoid a bundle to be
automatically mapped by setting the value to false:

    auto_mapping: true
    mappings:
        BlogBundle: false

With the above configuration, all bundles will be
auto-mapped, but the BlogBundle won't be.

Bundles that are defined in mappings won't be
managed by the auto-mapping feature:

    auto_mapping: true
    mappings:
        BlogBundle: xml
2011-04-30 21:18:20 +02:00
..
DependencyInjection [DoctrineBundle] fixed auto-mapping 2011-04-30 21:18:20 +02:00
README Introduced meta-bundle DoctrineAbstractBundle to squash 400+ loc of code duplication from ORM and MongoDB Bundles. 2011-01-03 08:07:22 +01:00

This is a meta-bundle. It does not contain a Bundle nor a DependencyInjection file. The code is only
ever used by the following bundles:

* DoctrineBundle
* DoctrineMigrationsBundle
* DoctrineMongoDBBundle

Future benefactors:

* DoctrineCouchDBBundle
* DoctrinePHPCRBundle

Additional code that could be put here:

* General Doctrine Form code
* General Doctrine Validator code