Rajout des premiers modèles GalerieA, GalerieArray
[zf2.biz/galerie.git] / config / autoload / global.php
1 <?php
2 /**
3  * Global Configuration Override
4  *
5  * You can use this file for overriding configuration values from modules, etc.
6  * You would place values in here that are agnostic to the environment and not
7  * sensitive to security.
8  *
9  * @NOTE: In practice, this file will typically be INCLUDED in your source
10  * control, so do not include passwords or other sensitive information in this
11  * file.
12  */
13 return array(
14     'db' => array(
15         'driver' => 'Pdo',
16         'dsn' => 'sqlite:' . getcwd() . '/data/jeu_essai.db',
17     ),
18     /* Alternative
19     'db' => array(
20         'driver' => 'Pdo_Sqlite',
21         'database' => getcwd() . '/data/jeu_essai.db',
22     ),*/
23     'service_manager' => array(
24         'factories' => array(
25             'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
26         ),
27     ),
28 );