Last active
August 29, 2015 14:21
-
-
Save HDias/f1d63f11e86b30f71c61 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 | |
return array( | |
'doctrine' => array( | |
'connection' => array( | |
'orm_default' => array( | |
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver', | |
'params' => array( | |
'password' => '', | |
'dbname' => 'ecommerce', | |
'driverOptions' => array( | |
PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'UTF8'" | |
) | |
) | |
) | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment