This extension sets up Doctrine ORM for Silex by reusing the database connection established with the DBAL extension (the default DoctrineServiceProvider included with Silex).
You'll find the following topics in this README:
- Silex (Not mentioned in composer.json, because -in my opinion- it's a direct dependency of your own project, so you should put it in your own JSON-file.)
- PHP 5.3.2 and above
- Doctrine 2 Object Relational Mapper
- Doctrine Database Abstraction Layer
- Common library for Doctrine
You basically have three options to add this extension to your Silex project. We'd strongly recommend the first option!
http://packagist.org/packages/nutwerk/doctrine-orm-provider
Add 'nutwerk/doctrine-orm-provider' to the dependencies in your projects composer.json file and update your dependencies. This is by far the easiest way, since it automatically adds the Doctrine dependencies and adds everything to the autoloading mechanism supplied by Composer.
More information on Composer can be found on getcomposer.org.
Another option is to clone the project:
cd /path/to/your_project/vendor
git clone [email protected]:mjakubowski/nutwerk-orm-extension.git
Or you can add it as a submodule if your project is in a git repository too:
cd /path/to/your_project
git submodule add [email protected]:mjakubowski/nutwerk-orm-extension.git vendor/nutwerk-orm-extension
This will require you to manually install all the dependencies. Also note that you'll need to add the provider to the Silex autoloader (or whatever autoloading mechanism) by hand. More on both subjects can be found below.
GitHub also gives you the option to download an ZIP-archive, which you can extract in your vendor folder. This method will also require you to manually install all the dependencies and add everything to your autoloader.
First of all you should have the Doctrine DBAL connection configured. For more information about configuring the DoctrineServiceProvider, I'd recommend reading this page of the Silex documentation.
Registering the Doctrine ORM Service Provider is rather straight forward:
<?php
/* ... */
$app['autoloader']->registerNamespace('Nutwerk', __DIR__ . '/vendor/nutwerk-orm-extension/lib');
$app->register(new Nutwerk\Provider\DoctrineORMServiceProvider(), array(
'db.orm.class_path' => __DIR__.'/vendor/doctrine2-orm/lib',
'db.orm.proxies_dir' => __DIR__.'/var/cache/doctrine/Proxy',
'db.orm.proxies_namespace' => 'DoctrineProxy',
'db.orm.auto_generate_proxies' => true,
'db.orm.entities' => array(array(
'type' => 'annotation',
'path' => __DIR__.'/app',
'namespace' => 'Entity',
)),
));
/* ... */
Note: If you don't want to use the internal autoloader of Silex (because you're using another one, like the one generated by composer for example), you can leave out the line starting with $app['autoloader']
and the db.orm.class_path parameter.
Below you'll find all the parameters with their defaults (they can also be found in DoctrineORMServiceProvider::setOrmDefaults).
-
db.orm.auto_generated_proxies
Default:
true
Sets whether proxy classes should be generated automatically at runtime by Doctrine. If set to
false
, proxy classes must be generated manually using the Doctrine command line tools. It is recommended to disable autogeneration for a production environment. -
db.orm.cache
Default:
new ArrayCache
Defines what caching method should be used for both the Metadata cache and the Query cache. The default (ArrayCache) should be fine when you're developing, but in a production environment you probably want to change this to something like APC or Memcache. More information can be found in Chapter 22. Caching of the Doctrine 2 ORM 2.1 documentation.
-
db.orm.cache_metadata
Default: db.orm.cache
If you wish to use a different caching method for your Metadata cache than the one defined in db.orm.cache, you can set it using this parameter.
-
db.orm.cache_query
Default: db.orm.cache
If you wish to use a different caching method for your Query cache than the one defined in db.orm.cache, you can set it using this parameter.
-
db.orm.cache_result
Set this parameter if you wish to configure result caching.
-
db.orm.class_path
You only need to use this if you want to autoload the Doctrine 2 ORM classes using the Silex autoloader. It should point to the folder where the classes is stored (the lib folder on the Doctrine repository).
-
db.orm.entities
Default:
array(
array(
'type' => 'annotation',
'path' => 'Entity',
'namespace' => 'Entity',
)
)
An array of arrays which should contain:
* ``type``: Type of metadata driver used (``annotation``, ``yml``, ``xml``)
* ``path``: Path to where the metadata is stored
* ``namespace``: Namespace used for the entities
The Doctrine ORM Service Provider uses a _DriverChain_ internally to configure Doctrine 2 ORM.
This allows you to use mixed types of metadata drivers in a single project.
-
db.orm.proxies_dir
Default:
cache/doctrine/Proxy
Sets the directory where Doctrine generates any proxy classes. For a detailed explanation on proxy classes and how they are used in Doctrine, refer to section 3.5 Proxy Objects of the Doctrine ORM documentation.
-
db.orm.proxies_namespace
Default:
DoctrineProxy
Sets the namespace to use for generated proxy classes. For a detailed explanation on proxy classes and how they are used in Doctrine, refer to section 3.5 Proxy Objects of the Doctrine ORM documentation.
You can access the EntityManager by calling $app['db.orm.em']
.