Skip to content

Instantly share code, notes, and snippets.

@ppeiris
Created October 27, 2013 20:37
Show Gist options
  • Save ppeiris/7187598 to your computer and use it in GitHub Desktop.
Save ppeiris/7187598 to your computer and use it in GitHub Desktop.
<?php
return array(
'db' => array(
'driver' => 'Pdo',
'driver_options' => array(
1002 => 'SET NAMES \'UTF8\'',
),
'adapters' => array(
'Zdbtable' => array(),
),
),
'service_manager' => array(
'factories' => array(
// You'r other factores goes here...
),
'abstract_factories' => array(
0 => 'Zend\\Db\\Adapter\\AdapterAbstractServiceFactory', // Add to the service manager. Apigility will use
// the this for the DB-connection.
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment