library dlc-doctrine
Some (abstract) classes and extensions for the Zend Framework 2 Module for Doctrine ORM.
dl-commons/dlc-doctrine
Some (abstract) classes and extensions for the Zend Framework 2 Module for Doctrine ORM.
- Saturday, April 18, 2015
- by dlabas
- Repository
- 1 Watchers
- 0 Stars
- 8 Installations
- PHP
- 2 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
DlcDoctrine
Some (abstract) classes and extensions for the Zend Framework 2 Module for Doctrine ORM., (*1)
This module is currently under heavy development., (*2)
Requirements
Installation
Main Setup
By cloning project
- Install the DlcBase ZF2 module
by cloning it into
./vendor/.
- Clone this project into your
./vendor/ directory.
With composer
-
Add this project and DlcDoctrine in your composer.json:, (*3)
"require": {
"dl-commons/dlc-doctrine": "dev-master"
}
-
Now tell composer to download DlcDoctrine by running the command:, (*4)
```bash
$ php composer.phar update, (*5)
Post installation
-
Enabling it in your application.config.phpfile., (*6)
```php
<?php
return array(
'modules' => array(
// ...
'DlcBase',
'DlcDoctrine',
),
// ...
);, (*7)
-
Add the [Add EventSubscriber to ResolveTargetEntityListener]" (https://github.com/dlabas/doctrine2/commit/6fbd7adc2a6b93cc6eeb6cedec49daef9f469db3) bugfix to your doctrine 2 module, (*8)