mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 22:54:25 +01:00
18 lines
302 B
PHP
18 lines
302 B
PHP
|
<?php
|
||
|
|
||
|
return array(
|
||
|
|
||
|
'connections' => array(
|
||
|
|
||
|
'mysql' => array(
|
||
|
'driver' => 'mysql',
|
||
|
'host' => 'localhost',
|
||
|
'database' => 'ninja',
|
||
|
'username' => 'ninja',
|
||
|
'password' => '1234',
|
||
|
'charset' => 'utf8',
|
||
|
'collation' => 'utf8_unicode_ci',
|
||
|
'prefix' => '',
|
||
|
)
|
||
|
)
|
||
|
);
|