mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-22 15:13:59 -06:00
Used EntitySpecificationRepository as default entity repository
This commit is contained in:
parent
a8b68f07b5
commit
b0c4582f3f
@ -47,7 +47,7 @@
|
|||||||
"predis/predis": "^1.1",
|
"predis/predis": "^1.1",
|
||||||
"pugx/shortid-php": "^0.7",
|
"pugx/shortid-php": "^0.7",
|
||||||
"ramsey/uuid": "^3.9",
|
"ramsey/uuid": "^3.9",
|
||||||
"shlinkio/shlink-common": "dev-main#2963395 as 3.4",
|
"shlinkio/shlink-common": "dev-main#1311861 as 3.4",
|
||||||
"shlinkio/shlink-config": "^1.0",
|
"shlinkio/shlink-config": "^1.0",
|
||||||
"shlinkio/shlink-event-dispatcher": "^1.6",
|
"shlinkio/shlink-event-dispatcher": "^1.6",
|
||||||
"shlinkio/shlink-importer": "^2.1",
|
"shlinkio/shlink-importer": "^2.1",
|
||||||
|
@ -4,12 +4,15 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Shlinkio\Shlink\Common;
|
namespace Shlinkio\Shlink\Common;
|
||||||
|
|
||||||
|
use Happyr\DoctrineSpecification\EntitySpecificationRepository;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
'entity_manager' => [
|
'entity_manager' => [
|
||||||
'orm' => [
|
'orm' => [
|
||||||
'proxies_dir' => 'data/proxies',
|
'proxies_dir' => 'data/proxies',
|
||||||
'load_mappings_using_functional_style' => true,
|
'load_mappings_using_functional_style' => true,
|
||||||
|
'default_repository_classname' => EntitySpecificationRepository::class,
|
||||||
],
|
],
|
||||||
'connection' => [
|
'connection' => [
|
||||||
'user' => '',
|
'user' => '',
|
||||||
|
Loading…
Reference in New Issue
Block a user