-
Notifications
You must be signed in to change notification settings - Fork 30
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
[DataSource] Provide Doctrine ORM Support #81
Comments
As I told you on IRC, I think the easiest way if you want to keep your structure for config is to simply override the factories here: https://github.com/doctrine/DoctrineModule/blob/master/config/module.config.php#L68-L75 |
DoctrineModule 0.8.x uses abstract factories to handle the "multiple entity Marco Pivetta On 10 May 2013 22:30, Michaël Gallego [email protected] wrote:
|
@Ocramius users currently manage their DB connections/credentials via a global application file, see here: https://github.com/ppi/skeletonapp/blob/2.1/app/config/datasource.php I want to let DoctrineORM users setup their credentials using the same manner as the link above, and then we hand that information over to DoctrineModule to start booting up all the Doctrine goodness. Essentially I don't want to modify any of Doctrine, or DoctrineORM module but really just hand over credentials. Does this make sense? how would you go about it? |
You can just merge these configs into the module's config |
Can you provide a link to the module's config, to make sure we're looking in the right place |
Looks like for ORM support we just need to pass credentials to here: For ODM support, we pass credentials into here: |
Correct |
Done |
Needs documentation. |
DoctrineORM support can be very quickly achieved by pulling in the Zend communities DoctrineORMModule. This is maintained primarily by @Ocramius and @bakura10.
A clear plan needs laid out on how to, at a very high-level, take configuration details from
./app/config/datasource.php
and pass them over to theDoctrineORMModule
for it to work its magic.Some important links referenced by the zend guys above are:
The text was updated successfully, but these errors were encountered: