Skip to content

Instantly share code, notes, and snippets.

@HDias
Last active August 29, 2015 14:21
Show Gist options
  • Save HDias/f1d63f11e86b30f71c61 to your computer and use it in GitHub Desktop.
Save HDias/f1d63f11e86b30f71c61 to your computer and use it in GitHub Desktop.
<?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