shlink/config/autoload/entity-manager.global.php

26 lines
570 B
PHP
Raw Normal View History

<?php
2019-10-05 18:26:10 +03:00
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
namespace Shlinkio\Shlink\Common;
2017-07-16 10:28:40 +03:00
use Happyr\DoctrineSpecification\Repository\EntitySpecificationRepository;
return [
'entity_manager' => [
'orm' => [
'proxies_dir' => 'data/proxies',
'load_mappings_using_functional_style' => true,
'default_repository_classname' => EntitySpecificationRepository::class,
],
'connection' => [
'user' => '',
'password' => '',
'dbname' => 'shlink',
'charset' => 'utf8',
],
],
];