mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 10:20:18 -06:00
20 lines
367 B
Plaintext
20 lines
367 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'entity_manager' => [
|
|
'connection' => [
|
|
'user' => 'root',
|
|
'password' => 'root',
|
|
'driver' => 'pdo_mysql',
|
|
'host' => 'shlink_db',
|
|
'driverOptions' => [
|
|
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
|
|
],
|
|
],
|
|
],
|
|
|
|
];
|