1
0
mirror of synced 2024-12-04 18:56:06 +03:00

Add note about "symfony/yaml" dependency for yml mappings

This commit is contained in:
Ilya Antipenko 2015-04-05 14:12:59 +03:00 committed by Ilya Antipenko
parent 354ccdc58b
commit a14517dc9d

View File

@ -79,6 +79,13 @@ Or if you prefer YAML:
$config = Setup::createYAMLMetadataConfiguration($paths, $isDevMode);
$entityManager = EntityManager::create($dbParams, $config);
.. note::
If you want to use yml mapping you should add yaml dependency to your `composer.json`:
::
"symfony/yaml": "*"
Inside the ``Setup`` methods several assumptions are made:
- If `$isDevMode` is true caching is done in memory with the ``ArrayCache``. Proxy objects are recreated on every request.