mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 17:06:41 -06:00
19 lines
320 B
Plaintext
19 lines
320 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'entity_manager' => [
|
|
'connection' => [
|
|
'user' => 'root',
|
|
'password' => 'root',
|
|
'driver' => 'pdo_mysql',
|
|
'host' => 'shlink_db',
|
|
'dbname' => 'shlink',
|
|
'charset' => 'utf8',
|
|
],
|
|
],
|
|
|
|
];
|