mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
22 lines
410 B
PHP
22 lines
410 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Common;
|
|
|
|
return [
|
|
|
|
'entity_manager' => [
|
|
'orm' => [
|
|
'proxies_dir' => 'data/proxies',
|
|
'load_mappings_using_functional_style' => true,
|
|
],
|
|
'connection' => [
|
|
'user' => '',
|
|
'password' => '',
|
|
'dbname' => 'shlink',
|
|
'charset' => 'utf8',
|
|
],
|
|
],
|
|
|
|
];
|