2016-08-06 12:40:31 +02:00
|
|
|
<?php
|
2019-10-05 17:26:10 +02:00
|
|
|
|
2017-10-12 10:13:20 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-02 19:28:10 +02:00
|
|
|
namespace Shlinkio\Shlink\Common;
|
2017-07-16 09:28:40 +02:00
|
|
|
|
2021-02-26 20:01:16 +01:00
|
|
|
use Happyr\DoctrineSpecification\Repository\EntitySpecificationRepository;
|
2021-01-09 10:56:02 +01:00
|
|
|
|
2016-08-06 12:40:31 +02:00
|
|
|
return [
|
|
|
|
|
|
|
|
'entity_manager' => [
|
|
|
|
'orm' => [
|
|
|
|
'proxies_dir' => 'data/proxies',
|
2020-01-29 10:06:42 +01:00
|
|
|
'load_mappings_using_functional_style' => true,
|
2021-01-09 10:56:02 +01:00
|
|
|
'default_repository_classname' => EntitySpecificationRepository::class,
|
2016-08-06 12:40:31 +02:00
|
|
|
],
|
|
|
|
'connection' => [
|
2019-12-17 21:20:24 +01:00
|
|
|
'user' => '',
|
|
|
|
'password' => '',
|
|
|
|
'dbname' => 'shlink',
|
2016-08-06 12:40:31 +02:00
|
|
|
'charset' => 'utf8',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|