Skip to content

Instantly share code, notes, and snippets.

@BinaryKitten
Created January 7, 2013 14:02
Show Gist options
  • Save BinaryKitten/4475197 to your computer and use it in GitHub Desktop.
Save BinaryKitten/4475197 to your computer and use it in GitHub Desktop.
<?php
// your module.config.php
return array(
'doctrine' => array(
'connection' => array(
// Configuration for service `doctrine.connection.orm_default` service
'orm_default' => array(
'params' => array(
'user' => 'YOUR_username',
'password' => 'YOUR_password',
'dbname' => 'YOUR_database',
)
),
),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment