Created
January 7, 2013 14:02
-
-
Save BinaryKitten/4475197 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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