Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions bin/doctrine-migrations

This file was deleted.

18 changes: 0 additions & 18 deletions config/cli-config.php

This file was deleted.

20 changes: 6 additions & 14 deletions src/App/src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ private function getDoctrineConfig(): array
],
'configuration' => [
'orm_default' => [
'result_cache' => 'filesystem',
'metadata_cache' => 'filesystem',
'query_cache' => 'filesystem',
'hydration_cache' => 'array',
'typed_field_mapper' => null,
'second_level_cache' => [
'result_cache' => 'filesystem',
'metadata_cache' => 'filesystem',
'query_cache' => 'filesystem',
'hydration_cache' => 'array',
'typed_field_mapper' => null,
'second_level_cache' => [
'enabled' => true,
'default_lifetime' => 3600,
'default_lock_lifetime' => 60,
Expand All @@ -117,14 +117,6 @@ private function getDoctrineConfig(): array
'class' => MappingDriverChain::class,
],
],
'migrations' => [
// Modify this line based on where you would like to have you migrations
'migrations_paths' => [
'Migrations' => 'src/Migrations',
],
'all_or_nothing' => true,
'check_database_platform' => true,
],
'types' => [
UuidType::NAME => UuidType::class,
],
Expand Down